system-config/playbooks/roles/unbound/tasks/dhclient.yaml
James E. Blair c6b22d7e13 unbound: fix dhclient.conf copy
The original version of this was wishful thinking: "is file" only
works locally, but this needs to run on the remote node.

Change-Id: Ib683809fdf580f41d213308331925c4765bb09d9
2018-08-28 14:28:48 -07:00

12 lines
233 B
YAML

- name: Register dhclient config file
stat:
path: "{{ item }}"
register: _dhclient
- name: Write dhclient config file
when: _dhclient.stat.exists | bool
copy:
src: dhclient.conf
dest: "{{ item }}"
mode: 0444