diff --git a/confluent_client/doc/man/osdeploy.ronn b/confluent_client/doc/man/osdeploy.ronn index fb5584ee..10c13127 100644 --- a/confluent_client/doc/man/osdeploy.ronn +++ b/confluent_client/doc/man/osdeploy.ronn @@ -5,7 +5,7 @@ osdeploy(8) --- Configure general OS deployment facilities of confluent `osdeploy import ` `osdeploy updateboot ` -`osdeploy initialize [-h] [-g] [-u] [-s] [-k] [-t] [-p] [-i] [-l]` +`osdeploy initialize [-h] [-g] [-u] [-s] [-k] [-t] [-p] [-i] [-l] [-a]` ## DESCRIPTION diff --git a/confluent_server/bin/osdeploy b/confluent_server/bin/osdeploy index d7187ca6..779966ac 100644 --- a/confluent_server/bin/osdeploy +++ b/confluent_server/bin/osdeploy @@ -38,7 +38,7 @@ def main(args): ap = argparse.ArgumentParser(description='Manage OS deployment resources') sp = ap.add_subparsers(dest='command') wiz = sp.add_parser('initialize', help='Do OS deployment preparation') - wiz.add_argument('-a', help='Initialize SSH access by confluent to nodes for automation such as ansible playbook execution', action='store_true') + wiz.add_argument('-a', help='Initialize SSH access by confluent to nodes for automation such as ansible playbook execution or syncfiles', action='store_true') wiz.add_argument('-g', help='Initialize a Genesis profile to boot systems into a rescue or staging environment', action='store_true') wiz.add_argument('-u', help='Pull in root user key for node deployment', action='store_true') wiz.add_argument('-s', help='Set up SSH CA for managing node to node ssh and known hosts', action='store_true')