2018-09-06 14:26:57 +00:00
|
|
|
---
|
2018-08-23 14:51:52 +00:00
|
|
|
# Todo : selinux configuration
|
|
|
|
- name: Confirm selinux deployed
|
|
|
|
stat:
|
|
|
|
path: /etc/selinux/config
|
2019-11-11 15:05:41 +00:00
|
|
|
when:
|
|
|
|
- ansible_os_family == "RedHat"
|
|
|
|
- "'Amazon' not in ansible_distribution"
|
2018-08-23 14:51:52 +00:00
|
|
|
register: slc
|
|
|
|
|
|
|
|
- name: Set selinux policy
|
|
|
|
selinux:
|
|
|
|
policy: targeted
|
|
|
|
state: "{{ preinstall_selinux_state }}"
|
|
|
|
when:
|
|
|
|
- ansible_os_family == "RedHat"
|
2019-11-11 15:05:41 +00:00
|
|
|
- "'Amazon' not in ansible_distribution"
|
2019-04-17 15:42:03 +00:00
|
|
|
- slc.stat.exists
|
2018-08-23 14:51:52 +00:00
|
|
|
changed_when: False
|
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
|
|
|
- name: Disable IPv6 DNS lookup
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/gai.conf
|
|
|
|
line: "precedence ::ffff:0:0/96 100"
|
|
|
|
state: present
|
2020-06-12 07:55:55 +00:00
|
|
|
create: yes
|
2018-08-23 14:51:52 +00:00
|
|
|
backup: yes
|
|
|
|
when:
|
|
|
|
- disable_ipv6_dns
|
2020-02-18 08:15:29 +00:00
|
|
|
- not ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk"]
|
2018-08-23 14:51:52 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
|
|
|
- name: Stat sysctl file configuration
|
|
|
|
stat:
|
2019-05-02 21:24:21 +00:00
|
|
|
path: "{{ sysctl_file_path }}"
|
2018-08-23 14:51:52 +00:00
|
|
|
register: sysctl_file_stat
|
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
|
|
|
- name: Change sysctl file path to link source if linked
|
|
|
|
set_fact:
|
2019-05-02 21:24:21 +00:00
|
|
|
sysctl_file_path: "{{ sysctl_file_stat.stat.lnk_source }}"
|
2018-08-23 14:51:52 +00:00
|
|
|
when:
|
|
|
|
- sysctl_file_stat.stat.islnk is defined
|
|
|
|
- sysctl_file_stat.stat.islnk
|
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
2018-12-18 09:39:25 +00:00
|
|
|
- name: Make sure sysctl file path folder exists
|
|
|
|
file:
|
|
|
|
name: "{{ sysctl_file_path | dirname }}"
|
|
|
|
state: directory
|
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- name: Enable ip forwarding
|
|
|
|
sysctl:
|
2019-05-02 21:24:21 +00:00
|
|
|
sysctl_file: "{{ sysctl_file_path }}"
|
2018-08-23 14:51:52 +00:00
|
|
|
name: net.ipv4.ip_forward
|
|
|
|
value: 1
|
|
|
|
state: present
|
|
|
|
reload: yes
|