summaryrefslogtreecommitdiff
path: root/setup-dns
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-05-06 09:53:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-05-06 09:53:36 +0000
commitec0c7a74bbf5824adc4efa54e1f91984ac870a8e (patch)
tree7f5a8763836154b10c8325629b493ebc67ead7e6 /setup-dns
parentf590563940559429ffe77094473d12361937852d (diff)
downloadalpine-conf-ec0c7a74bbf5824adc4efa54e1f91984ac870a8e.zip
move to .in files
Diffstat (limited to 'setup-dns')
-rwxr-xr-xsetup-dns25
1 files changed, 0 insertions, 25 deletions
diff --git a/setup-dns b/setup-dns
deleted file mode 100755
index fd6b04e..0000000
--- a/setup-dns
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-PREFIX=
-. "$PREFIX/lib/libalpine.sh"
-
-conf="$ROOT/etc/resolv.conf"
-if [ -f "$conf" ] ; then
- domain=`awk '/^domain/ {print $2}' $conf`
- dns=`awk '/^nameserver/ {print $2}' $conf`
-fi
-
-echon "DNS domain name? (e.g 'bar.com') [$domain] "
-default_read domain $domain
-echon "DNS nameserver(s)? ["
-for i in $dns ; do
- echon "$i "
-done
-echon "] "
-default_read dns "$dns"
-
-echo "search $domain" > $conf
-for i in $dns ; do
- echo "nameserver $i" >> $conf
-done
-