2017-05-18 21:10:07 +00:00
|
|
|
---
|
2018-07-06 21:20:38 +00:00
|
|
|
- name: Setup network
|
|
|
|
block:
|
|
|
|
- name: Set hostname
|
|
|
|
template:
|
|
|
|
src: etc/hostname.j2
|
|
|
|
dest: /etc/hostname
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
register: hostname_result
|
|
|
|
notify:
|
|
|
|
- host_reboot
|
2017-05-18 21:10:07 +00:00
|
|
|
|
2018-07-06 21:20:38 +00:00
|
|
|
- name: Set hosts file
|
|
|
|
template:
|
|
|
|
src: etc/hosts.j2
|
|
|
|
dest: /etc/hosts
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
register: hosts_result
|
|
|
|
notify:
|
|
|
|
- host_reboot
|
2017-05-18 21:10:07 +00:00
|
|
|
|
2018-07-06 21:20:38 +00:00
|
|
|
- name: Add network interface configuration
|
|
|
|
template:
|
|
|
|
src: etc/sysconfig/network-scrips/ifcfg.j2
|
|
|
|
dest: "/etc/sysconfig/network-scripts/ifcfg-{{ item.key }}"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
with_dict: "{{ network_interfaces }}"
|
|
|
|
loop_control:
|
|
|
|
label: "{{ item.key }}"
|
|
|
|
when: item.key in ansible_interfaces
|
|
|
|
notify:
|
|
|
|
- network_restart
|
2017-07-14 11:24:33 +00:00
|
|
|
|
2018-07-06 21:20:38 +00:00
|
|
|
- name: Set dns server
|
|
|
|
template:
|
|
|
|
src: etc/resolv.conf.j2
|
|
|
|
dest: /etc/resolv.conf
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
become: True
|