mirror of
https://github.com/ansible/ansible.git
synced 2026-08-03 08:03:05 +02:00
Fix ansible-galaxy collection verify subcommand help message. (#76108)
* Fix ansible-galaxy collection verify subcommand help message. * changelog
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
bugfixes:
|
||||
- Fix help message for the 'ansible-galaxy collection verify' positional argument.
|
||||
The positional argument must be a collection name (https://github.com/ansible/ansible/issues/76087).
|
||||
@@ -376,8 +376,8 @@ class GalaxyCLI(CLI):
|
||||
'found on the server and the installed copy. This does not verify dependencies.')
|
||||
verify_parser.set_defaults(func=self.execute_verify)
|
||||
|
||||
verify_parser.add_argument('args', metavar='{0}_name'.format(galaxy_type), nargs='*', help='The collection(s) name or '
|
||||
'path/url to a tar.gz collection artifact. This is mutually exclusive with --requirements-file.')
|
||||
verify_parser.add_argument('args', metavar='{0}_name'.format(galaxy_type), nargs='*', help='The installed collection(s) name. '
|
||||
'This is mutually exclusive with --requirements-file.')
|
||||
verify_parser.add_argument('-i', '--ignore-errors', dest='ignore_errors', action='store_true', default=False,
|
||||
help='Ignore errors during verification and continue with the next specified collection.')
|
||||
verify_parser.add_argument('--offline', dest='offline', action='store_true', default=False,
|
||||
|
||||
Reference in New Issue
Block a user