use become

This commit is contained in:
Robert Kaussow 2018-07-06 23:20:38 +02:00
parent f4121d3163
commit 44263bce25
2 changed files with 45 additions and 46 deletions

View File

@ -17,14 +17,10 @@
listen: listen:
- "host_reboot" - "host_reboot"
- name: Wait for host - name: Waiting for host startup
wait_for: wait_for_connection:
host: "{{ ansible_ssh_host }}"
port: 22
delay: 5 delay: 5
timeout: 300 timeout: 300
connection: local
become: False
listen: listen:
- "network_restart" - "network_restart"
- "host_reboot" - "host_reboot"

View File

@ -1,5 +1,7 @@
--- ---
- name: Set hostname - name: Setup network
block:
- name: Set hostname
template: template:
src: etc/hostname.j2 src: etc/hostname.j2
dest: /etc/hostname dest: /etc/hostname
@ -10,7 +12,7 @@
notify: notify:
- host_reboot - host_reboot
- name: Set hosts file - name: Set hosts file
template: template:
src: etc/hosts.j2 src: etc/hosts.j2
dest: /etc/hosts dest: /etc/hosts
@ -21,7 +23,7 @@
notify: notify:
- host_reboot - host_reboot
- name: Add network interface configuration - name: Add network interface configuration
template: template:
src: etc/sysconfig/network-scrips/ifcfg.j2 src: etc/sysconfig/network-scrips/ifcfg.j2
dest: "/etc/sysconfig/network-scripts/ifcfg-{{ item.key }}" dest: "/etc/sysconfig/network-scripts/ifcfg-{{ item.key }}"
@ -35,10 +37,11 @@
notify: notify:
- network_restart - network_restart
- name: Set dns server - name: Set dns server
template: template:
src: etc/resolv.conf.j2 src: etc/resolv.conf.j2
dest: /etc/resolv.conf dest: /etc/resolv.conf
owner: root owner: root
group: root group: root
mode: 0644 mode: 0644
become: True