Skip to content

Commit

Permalink
Merge pull request #606 from grycap/devel
Browse files Browse the repository at this point in the history
add -o StrictHostKeyChecking=no option
  • Loading branch information
micafer authored May 15, 2018
2 parents c1f13be + 380b521 commit 2917531
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ transport = smart
host_key_checking = False
nocolor = 1

# For old versions 1.X
sudo_user = root
sudo_exe = sudo

# For new versions 2.X
become_user = root
become_method = sudo

Expand All @@ -69,9 +64,9 @@ record_host_keys=False
[ssh_connection]

# Only in systems with OpenSSH support to ControlPersist
ssh_args = -o ControlMaster=auto -o ControlPersist=900s
ssh_args = -o ControlMaster=auto -o ControlPersist=900s -o StrictHostKeyChecking=no
# In systems with older versions of OpenSSH (RHEL 6, CentOS 6, SLES 10 or SLES 11)
#ssh_args =
#ssh_args = -o StrictHostKeyChecking=no
pipelining = True
```

Expand Down
4 changes: 2 additions & 2 deletions contextualization/conf-ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,11 @@
when: (ansible_os_family == "RedHat" and ansible_distribution_major_version|int < 6) or (ansible_os_family == "Suse" and ansible_distribution_major_version|int < 10)

- name: Change ssh_args to set ControlPersist to 15 min in ansible.cfg
ini_file: dest=/etc/ansible/ansible.cfg section=ssh_connection option=ssh_args value="-o ControlMaster=auto -o ControlPersist=900s"
ini_file: dest=/etc/ansible/ansible.cfg section=ssh_connection option=ssh_args value="-o ControlMaster=auto -o ControlPersist=900s -o StrictHostKeyChecking=no"
when: ansible_os_family == "Debian" or (ansible_os_family == "RedHat" and ansible_distribution_major_version|int >= 7) or (ansible_os_family == "Suse" and ansible_distribution_major_version|int >= 12)

- name: Change ssh_args to remove ControlPersist in REL 6 and older in ansible.cfg
ini_file: dest=/etc/ansible/ansible.cfg section=ssh_connection option=ssh_args value=""
ini_file: dest=/etc/ansible/ansible.cfg section=ssh_connection option=ssh_args value="-o StrictHostKeyChecking=no"
when: (ansible_os_family == "RedHat" and ansible_distribution_major_version|int < 7) or (ansible_os_family == "Suse" and ansible_distribution_major_version|int < 12)

- name: Activate SSH pipelining in ansible.cfg
Expand Down

0 comments on commit 2917531

Please sign in to comment.