11 lines
352 B
YAML
11 lines
352 B
YAML
|
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||
|
- name: Replace old /etc/resolv.conf with new /etc/resolv.conf
|
||
|
template:
|
||
|
src: resolv.j2
|
||
|
dest: "{{ path_resolv }}"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: '0644'
|
||
|
backup: true
|
||
|
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|