mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 15:21:13 +03:00
add help for instance provisioning
This commit is contained in:
parent
19ebd0aa68
commit
42ee804464
@ -17,6 +17,11 @@ class Command(BaseCommand):
|
||||
Deprovision a Tower cluster node
|
||||
"""
|
||||
|
||||
help = (
|
||||
'Remove instance from the database. '
|
||||
'Specify `--hostname` to use this command.'
|
||||
)
|
||||
|
||||
option_list = BaseCommand.option_list + (
|
||||
make_option('--hostname', dest='hostname', type='string',
|
||||
help='Hostname used during provisioning'),
|
||||
|
@ -16,6 +16,11 @@ class Command(BaseCommand):
|
||||
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 + (
|
||||
make_option('--hostname', dest='hostname', type='string',
|
||||
help='Hostname used during provisioning'),
|
||||
|
Loading…
Reference in New Issue
Block a user