10 lines
154 B
YAML
10 lines
154 B
YAML
|
---
|
||
|
- name: Install resolv.conf
|
||
|
template:
|
||
|
src: resolv.conf.j2
|
||
|
dest: /etc/resolv.conf
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: u=rw,g=r,o=r
|
||
|
...
|