reverted to previous pull checkout dir behaviour

This fixes bugs with not finding plays when not specifying checkout dir
Also makes it backwards compatible
pull/13420/merge
Brian Coca 9 years ago
parent 8d5f36a6c2
commit e1c62fb5af

@ -74,7 +74,7 @@ class PullCLI(CLI):
help='sleep for random interval (between 0 and n number of seconds) before starting. This is a useful way to disperse git requests')
self.parser.add_option('-f', '--force', dest='force', default=False, action='store_true',
help='run the playbook even if the repository could not be updated')
self.parser.add_option('-d', '--directory', dest='dest', default='~/.ansible/pull',
self.parser.add_option('-d', '--directory', dest='dest', default=None,
help='directory to checkout repository to')
self.parser.add_option('-U', '--url', dest='url', default=None,
help='URL of the playbook repository')
@ -90,6 +90,11 @@ class PullCLI(CLI):
self.options, self.args = self.parser.parse_args()
if not self.options.dest:
hostname = socket.getfqdn()
# use a hostname dependent directory, in case of $HOME on nfs
self.options.dest = os.path.join('~/.ansible/pull', hostname)
if self.options.sleep:
try:
secs = random.randint(0,int(self.options.sleep))

Loading…
Cancel
Save