mirror of
https://github.com/ansible/awx.git
synced 2026-05-20 07:17:40 -02:30
Merge pull request #174 from chrismeyersfsu/fix-cleanup_jobs_help
added default --days value to --help
This commit is contained in:
@@ -23,7 +23,7 @@ class Command(NoArgsCommand):
|
|||||||
|
|
||||||
option_list = NoArgsCommand.option_list + (
|
option_list = NoArgsCommand.option_list + (
|
||||||
make_option('--days', dest='days', type='int', default=90, metavar='N',
|
make_option('--days', dest='days', type='int', default=90, metavar='N',
|
||||||
help='Remove jobs/updates executed more than N days ago'),
|
help='Remove jobs/updates executed more than N days ago. Defaults to 90.'),
|
||||||
make_option('--dry-run', dest='dry_run', action='store_true',
|
make_option('--dry-run', dest='dry_run', action='store_true',
|
||||||
default=False, help='Dry run mode (show items that would '
|
default=False, help='Dry run mode (show items that would '
|
||||||
'be removed)'),
|
'be removed)'),
|
||||||
|
|||||||
Reference in New Issue
Block a user