Browse Source

Add comment about why ansible_ssh_pipelining is set to false in bootstrap-os

pull/705/head
Alexander Block 8 years ago
parent
commit
42ea4d2cfd
1 changed files with 2 additions and 0 deletions
  1. 2
      cluster.yml

2
cluster.yml

@ -3,6 +3,8 @@
any_errors_fatal: true any_errors_fatal: true
gather_facts: false gather_facts: false
vars: vars:
# Need to disable pipelining for bootstrap-os as some systems have requiretty in sudoers set, which makes pipelining
# fail. bootstrap-os fixes this on these systems, so in later plays it can be enabled.
ansible_ssh_pipelining: false ansible_ssh_pipelining: false
roles: roles:
- bootstrap-os - bootstrap-os

Loading…
Cancel
Save