From 5876f4589b45d29a143f7409c80df46ef99beed3 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 20 Aug 2019 09:19:56 -0400 Subject: [PATCH] Add little easter egg to the init command Because who doesn't like David Wilcox? --- client-cli/pvc.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index 7d77e34d..01fdfe3a 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -1707,6 +1707,9 @@ def init_cluster(yes): click.echo('Initializing a new cluster with Zookeeper address "{}".'.format(zk_host)) + # Easter-egg + click.echo("Some music while we're Layin' Pipe? https://youtu.be/sw8S_Kv89IU") + # Open a Zookeeper connection zk_conn = pvc_common.startZKConnection(zk_host)