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 92
92
- Update/validate CentOS 7 box
93
93
- Update documentation
94
94
- 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 1
1
---
2
2
# File: tasks/CentOS.yml - CentOS tasks for nomad
3
3
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
+
4
9
- name : OS Packages
5
10
yum : " name={{ item }} state=present"
6
11
with_items : " {{ nomad_centos_os_packages }}"
Original file line number Diff line number Diff line change 1
1
---
2
2
# File: tasks/Red Hat.yml - Red Hat tasks for nomad
3
3
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"
5
8
6
9
- name : OS Packages
7
10
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