Initial Push of scraped playbooks

This commit is contained in:
janic
2021-12-06 09:45:41 +01:00
parent 8ea7a36196
commit 7aa8e04057
14 changed files with 353 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
---
- name: "Fix DNS"
hosts: rpis
tasks:
- name: "Copy working resolv.conf"
ansible.builtin.copy:
src: /srv/ansible/files/rpis/resolve.conf
dest: /etc/resolv.conf
owner: root
group: root
mode: '0644'
become: True
...