Fix unarchive task in Gitian role

As of Ansible 2.2.0, copy and remote_src are mutually exclusive.
Also adds IdentitiesOnly=yes to SSH options.
This commit is contained in:
Kevin Gallagher 2016-12-08 11:19:41 -08:00
parent 9f12f115ff
commit d0ca504c06
2 changed files with 1 additions and 2 deletions

View File

@ -6,6 +6,6 @@ host_key_checking = False
timeout = 60
[ssh_connection]
ssh_args = -o ControlMaster=auto -o ControlPersist=300s -o ConnectTimeout=60
ssh_args = -o ControlMaster=auto -o ControlPersist=300s -o ConnectTimeout=60 -o IdentitiesOnly=yes
pipelining = True
scp_if_ssh = True

View File

@ -92,7 +92,6 @@
unarchive:
src: "{{ vm_builder_url }}"
dest: "{{ download_directory }}"
copy: no
remote_src: yes
- name: Install VM builder Python module.