Update ansible remote tmp

pull/828/merge
ibuler 2017-12-28 12:03:02 +08:00
parent f58c45f7be
commit 827246ed4c
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,7 @@ Options = namedtuple('Options', [
'ssh_common_args', 'ssh_extra_args', 'sftp_extra_args',
'scp_extra_args', 'become', 'become_method', 'become_user',
'verbosity', 'check', 'extra_vars', 'playbook_path', 'passwords',
'diff', 'gathering'
'diff', 'gathering', 'remote_tmp',
])
@ -57,6 +57,7 @@ def get_default_options():
passwords=None,
diff=False,
gathering='implicit',
remote_tmp='/tmp/.ansible'
)
return options