File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 9292- Update/validate CentOS 7 box
9393- Update documentation
9494- Update failure cases for CentOS
95+
96+ ## v1.3.2
97+
98+ - Disable SELinux when Docker is used
Original file line number Diff line number Diff line change 11---
22# File: tasks/CentOS.yml - CentOS tasks for nomad
33
4+ # Supposedly SELinux disrupts LXC (shrug)
5+ - name : Disable SELinux
6+ lineinfile : dest=/etc/selinux/config regexp='^SELINUX=enforcing' line='SELINUX=disabled'
7+ when : nomad_enable_docker == "true"
8+
49- name : OS Packages
510 yum : " name={{ item }} state=present"
611 with_items : " {{ nomad_centos_os_packages }}"
Original file line number Diff line number Diff line change 11---
22# File: tasks/Red Hat.yml - Red Hat tasks for nomad
33
4- # Download and install SELinux Python module (required by Ansible)
4+ # Supposedly SELinux disrupts LXC (shrug)
5+ - name : Disable SELinux
6+ lineinfile : dest=/etc/selinux/config regexp='^SELINUX=enforcing' line='SELINUX=disabled'
7+ when : nomad_enable_docker == "true"
58
69- name : OS Packages
710 yum : " name={{ item }} state=present"
Original file line number Diff line number Diff line change 1- v1.3.1
1+ v1.3.2
You can’t perform that action at this time.
0 commit comments