Created
September 17, 2013 17:38
-
-
Save dpritchett/6597778 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: all | |
tasks: | |
- name: ensure googley fast nameservers | |
sudo: True | |
template: src=../templates/resolv.conf | |
dest=/etc/resolv.conf force=true | |
owner=root | |
group=root | |
mode=0644 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# google nameservers are faster than the defaulted Raspbian ones... | |
nameserver 8.8.8.8 | |
nameserver 8.8.4.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment