mirror of
https://github.com/ansible/awx.git
synced 2026-05-10 10:57:35 -02:30
fix a typo in the tower-manage instance_group_remove arg parsing
This commit is contained in:
@@ -11,13 +11,13 @@ from django.core.management.base import BaseCommand, CommandError
|
|||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
|
|
||||||
help = (
|
help = (
|
||||||
"Remove specified instances (specified by hostnames) from the specified queue (instance group).\n"
|
"Remove an instance (specified by --hostname) from the specified queue (instance group).\n"
|
||||||
"In order remove the queue, use the `unregister_queue` command.")
|
"In order remove the queue, use the `unregister_queue` command.")
|
||||||
|
|
||||||
option_list = BaseCommand.option_list + (
|
option_list = BaseCommand.option_list + (
|
||||||
make_option('--queuename', dest='queuename', type='string',
|
make_option('--queuename', dest='queuename', type='string',
|
||||||
help='Queue to be removed from'),
|
help='Queue to be removed from'),
|
||||||
make_option('--hostname', dest='hostnames', type='string',
|
make_option('--hostname', dest='hostname', type='string',
|
||||||
help='Host to remove from queue'),
|
help='Host to remove from queue'),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user