aboutsummaryrefslogtreecommitdiffstats
path: root/roles/dns/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/dns/tasks/main.yml')
-rw-r--r--roles/dns/tasks/main.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/dns/tasks/main.yml b/roles/dns/tasks/main.yml
new file mode 100644
index 0000000..41cfe8e
--- /dev/null
+++ b/roles/dns/tasks/main.yml
@@ -0,0 +1,16 @@
+
+# dns ~~ roles/dns/tasks/main.yml
+# ensure host is using unified dns
+
+---
+
+- name: ensure dns
+ template:
+ src: resolv.conf.j2
+ dest: /etc/resolv.conf
+ owner: "{{ user_root }}"
+ group: "{{ group_root }}"
+ mode: 0644
+
+- name: check dns resolution
+ shell: ping -c 1 google.com
remember that computers suck.