From aab27ccc4b3b3b2cc67ae241fe01c2f31e7ca5db Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 13 Aug 2020 15:29:45 -0400 Subject: [PATCH] Fix typo in osdeploy code --- confluent_server/bin/osdeploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/bin/osdeploy b/confluent_server/bin/osdeploy index c8cfa0cd..6dcfbb9f 100644 --- a/confluent_server/bin/osdeploy +++ b/confluent_server/bin/osdeploy @@ -184,7 +184,7 @@ def initialize(cmdset): sys.stdout.flush() cmdset.u = input().strip().lower().startswith('y') sys.stdout.write('Initialize a profile to boot Genesis on target systems (a small Linux environment for rescue and staging use)? (y/n): ') - cmdset.g = input().strip().lower().statswith('y') + cmdset.g = input().strip().lower().startswith('y') sys.stdout.write('Set up an SSH authority to help manage known_hosts and node to node ssh for all users (-s)? (y/n): ') 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): ')