From 07586114815bde5a750ce80cb04aad6cdc130c8c Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 3 Aug 2020 09:34:18 -0400 Subject: [PATCH] Add '-l' to interactive initialize --- confluent_server/bin/osdeploy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/confluent_server/bin/osdeploy b/confluent_server/bin/osdeploy index 4c10f25d..358824e6 100644 --- a/confluent_server/bin/osdeploy +++ b/confluent_server/bin/osdeploy @@ -132,6 +132,8 @@ def initialize(cmdset): cmdset.s = input().strip().lower().startswith('y') sys.stdout.write('Update global known hosts on this server to trust local CA certificates (-k)? (y/n): ') cmdset.k = input().strip().lower().startswith('y') + sys.stdout.write('Allow nodes to ssh to this management node without a password (-l)? (y/n): ') + cmdset.l = input().strip().lower().startswith('y') sys.stdout.write('Update tftp directory with binaries to support PXE (-p) (y/n): ') cmdset.p = input().strip().lower().startswith('y') sys.stdout.write('Generate new TLS certificates for HTTP, replacing any existing certificate (-t)? (y/n): ')