mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 01:47:35 -02:30
add help for instance provisioning
This commit is contained in:
@@ -17,6 +17,11 @@ class Command(BaseCommand):
|
|||||||
Deprovision a Tower cluster node
|
Deprovision a Tower cluster node
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
help = (
|
||||||
|
'Remove instance from the database. '
|
||||||
|
'Specify `--hostname` to use this command.'
|
||||||
|
)
|
||||||
|
|
||||||
option_list = BaseCommand.option_list + (
|
option_list = BaseCommand.option_list + (
|
||||||
make_option('--hostname', dest='hostname', type='string',
|
make_option('--hostname', dest='hostname', type='string',
|
||||||
help='Hostname used during provisioning'),
|
help='Hostname used during provisioning'),
|
||||||
|
|||||||
@@ -16,6 +16,11 @@ class Command(BaseCommand):
|
|||||||
Regsiter this instance with the database for HA tracking.
|
Regsiter this instance with the database for HA tracking.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
help = (
|
||||||
|
'Add instance to the database. '
|
||||||
|
'Specify `--hostname` to use this command.'
|
||||||
|
)
|
||||||
|
|
||||||
option_list = BaseCommand.option_list + (
|
option_list = BaseCommand.option_list + (
|
||||||
make_option('--hostname', dest='hostname', type='string',
|
make_option('--hostname', dest='hostname', type='string',
|
||||||
help='Hostname used during provisioning'),
|
help='Hostname used during provisioning'),
|
||||||
|
|||||||
Reference in New Issue
Block a user