summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2014-03-29 17:47:37 -0400
committerJune McEnroe <programble@gmail.com>2014-03-29 17:47:37 -0400
commit640170df60c2b2372ba9a723d847fdc69c6379bc (patch)
treeb72d25d34b3096272576ac7d357c2e264c924411 /bin
parentRename home.programble.me alias to tunnel (diff)
downloadsrc-640170df60c2b2372ba9a723d847fdc69c6379bc.tar.gz
src-640170df60c2b2372ba9a723d847fdc69c6379bc.zip
Add gdns
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gdns11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/gdns b/bin/gdns
new file mode 100755
index 00000000..9433ba00
--- /dev/null
+++ b/bin/gdns
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+if grep -q 'gdns.sh' /etc/resolv.conf; then
+  sed -i '1,3d' /etc/resolv.conf
+  echo 'Google DNS removed'
+else
+  sed -i '1i # Added by gdns.sh' /etc/resolv.conf
+  sed -i '2i nameserver 8.8.8.8' /etc/resolv.conf
+  sed -i '3i nameserver 8.8.4.4' /etc/resolv.conf
+  echo 'Google DNS added'
+fi