11 lines
229 B
YAML
11 lines
229 B
YAML
|
|
- hosts: all
|
||
|
|
become: yes
|
||
|
|
tasks:
|
||
|
|
- name: set bgzar dns
|
||
|
|
copy:
|
||
|
|
src: resolv.begzar.conf
|
||
|
|
dest: /etc/resolv.conf
|
||
|
|
owner: root
|
||
|
|
group: root
|
||
|
|
mode: u=rwx,g=rwx,o=rwx
|