From b36af5dfb34277f016115cfb5fda1bca964969b5 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Tue, 29 Mar 2022 12:21:42 -0400 Subject: [PATCH] Update help text for provision_instance command --- awx/main/management/commands/provision_instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/management/commands/provision_instance.py b/awx/main/management/commands/provision_instance.py index c5c5ba3e1d..b873cb2fd5 100644 --- a/awx/main/management/commands/provision_instance.py +++ b/awx/main/management/commands/provision_instance.py @@ -13,7 +13,7 @@ class Command(BaseCommand): Register this instance with the database for HA tracking. """ - help = "Add instance to the database. Specify `--hostname` to use this command." + help = "Add instance to the database. When no options are provided, the hostname of the current system will be used. Override with `--hostname`." def add_arguments(self, parser): parser.add_argument('--hostname', dest='hostname', type=str, help="Hostname used during provisioning")