Skip to content
Snippets Groups Projects
Commit e88c1067 authored by Bogdan Dobrelya's avatar Bogdan Dobrelya Committed by GitHub
Browse files

Merge pull request #891 from galthaus/selinux-order

preinstall fails on AWS CentOS7 image
parents 2a2953c6 f77257cf
No related branches found
No related tags found
No related merge requests found
...@@ -76,17 +76,6 @@ ...@@ -76,17 +76,6 @@
when: cloud_provider is defined and cloud_provider == 'azure' when: cloud_provider is defined and cloud_provider == 'azure'
tags: [cloud-provider, azure, facts] tags: [cloud-provider, azure, facts]
- name: Enable ip forwarding
lineinfile:
dest: /etc/sysctl.d/99-sysctl.conf
regexp: '^net.ipv4.ip_forward='
line: 'net.ipv4.ip_forward=1'
state: present
create: yes
backup: yes
validate: 'sysctl -f %s'
tags: bootstrap-os
- name: Create cni directories - name: Create cni directories
file: file:
path: "{{ item }}" path: "{{ item }}"
...@@ -134,6 +123,13 @@ ...@@ -134,6 +123,13 @@
when: not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"] when: not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]
tags: bootstrap-os tags: bootstrap-os
# Todo : selinux configuration
- name: Set selinux policy to permissive
selinux: policy=targeted state=permissive
when: ansible_os_family == "RedHat"
changed_when: False
tags: bootstrap-os
- name: Disable IPv6 DNS lookup - name: Disable IPv6 DNS lookup
lineinfile: lineinfile:
dest: /etc/gai.conf dest: /etc/gai.conf
...@@ -143,11 +139,15 @@ ...@@ -143,11 +139,15 @@
when: disable_ipv6_dns and not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"] when: disable_ipv6_dns and not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]
tags: bootstrap-os tags: bootstrap-os
# Todo : selinux configuration - name: Enable ip forwarding
- name: Set selinux policy to permissive lineinfile:
selinux: policy=targeted state=permissive dest: /etc/sysctl.d/99-sysctl.conf
when: ansible_os_family == "RedHat" regexp: '^net.ipv4.ip_forward='
changed_when: False line: 'net.ipv4.ip_forward=1'
state: present
create: yes
backup: yes
validate: 'sysctl -f %s'
tags: bootstrap-os tags: bootstrap-os
- name: Write openstack cloud-config - name: Write openstack cloud-config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment