kayobe/ansible/disable-selinux.yml
Mark Goddard 94b911d44d Increase reboot wait timeout in disable-selinux for non-virt hosts
Default of 300s was proving too short for real machines, increase to
600s.
2017-02-16 10:44:30 +00:00

7 lines
214 B
YAML

---
- name: Disable SELinux and reboot if required
hosts: controllers:seed
roles:
- role: disable-selinux
disable_selinux_reboot_timeout: "{{ 600 if ansible_virtualization_role == 'host' else 300 }}"