This continues the DHCP hook checks. Also protect the create side

if the system doesn't have any config files at all.
This commit is contained in:
Greg Althaus
2017-01-13 10:14:57 -06:00
parent 0f6e08d34f
commit 923057c1a8
3 changed files with 7 additions and 6 deletions

View File

@@ -50,10 +50,14 @@
dhclientconffile: /etc/dhclient.conf
when: dhclient_stat.stat.exists
- name: check if /etc/dhcp/dhclient.conf exists
stat: path=/etc/dhcp/dhclient.conf
register: dhcp_dhclient_stat
- name: target dhclient conf file for /etc/dhcp/dhclient.conf
set_fact:
dhclientconffile: /etc/dhcp/dhclient.conf
when: not dhclient_stat.stat.exists
when: dhcp_dhclient_stat.stat.exists
- name: target dhclient hook file for Red Hat family
set_fact: