ansible-pull - update help info for --directory option (#74936)
* Update -d help info for ansible-pull * fix pep8
This commit is contained in:
parent
5ac1b04929
commit
6539c59857
2 changed files with 4 additions and 1 deletions
2
changelogs/fragments/ansible-pull-doc-update.yml
Normal file
2
changelogs/fragments/ansible-pull-doc-update.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- ansible-pull - update documentation for ``--directory`` option to clarify path must be absolute.
|
|
@ -94,7 +94,8 @@ class PullCLI(CLI):
|
||||||
'This is a useful way to disperse git requests')
|
'This is a useful way to disperse git requests')
|
||||||
self.parser.add_argument('-f', '--force', dest='force', default=False, action='store_true',
|
self.parser.add_argument('-f', '--force', dest='force', default=False, action='store_true',
|
||||||
help='run the playbook even if the repository could not be updated')
|
help='run the playbook even if the repository could not be updated')
|
||||||
self.parser.add_argument('-d', '--directory', dest='dest', default=None, help='directory to checkout repository to')
|
self.parser.add_argument('-d', '--directory', dest='dest', default=None,
|
||||||
|
help='absolute path of repository checkout directory (relative paths are not supported)')
|
||||||
self.parser.add_argument('-U', '--url', dest='url', default=None, help='URL of the playbook repository')
|
self.parser.add_argument('-U', '--url', dest='url', default=None, help='URL of the playbook repository')
|
||||||
self.parser.add_argument('--full', dest='fullclone', action='store_true', help='Do a full clone, instead of a shallow one.')
|
self.parser.add_argument('--full', dest='fullclone', action='store_true', help='Do a full clone, instead of a shallow one.')
|
||||||
self.parser.add_argument('-C', '--checkout', dest='checkout',
|
self.parser.add_argument('-C', '--checkout', dest='checkout',
|
||||||
|
|
Loading…
Reference in a new issue