c12s-kubespray/roles/kubernetes/preinstall/tasks/0110-dhclient-hooks-undo.yml

21 lines
599 B
YAML
Raw Normal View History

---
2017-06-16 17:25:46 +00:00
# These tasks will undo changes done by kubespray in the past if needed (e.g. when upgrading from kubespray 2.0.x
# or when changing resolvconf_mode)
2017-06-16 17:25:46 +00:00
- name: Remove kubespray specific config from dhclient config
blockinfile:
path: "{{dhclientconffile}}"
state: absent
backup: yes
marker: "# Ansible entries {mark}"
when: dhclientconffile is defined
notify: Preinstall | restart network
2017-06-16 17:25:46 +00:00
- name: Remove kubespray specific dhclient hook
file:
path: "{{ dhclienthookfile }}"
state: absent
when: dhclienthookfile is defined
notify: Preinstall | restart network