From ccaf94592342255f3f0692c242196fb157a48137 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Sat, 14 Oct 2006 09:31:03 +0000 Subject: intial import - version 0.6.0 --- setup-dns | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 setup-dns (limited to 'setup-dns') diff --git a/setup-dns b/setup-dns new file mode 100755 index 0000000..fd6b04e --- /dev/null +++ b/setup-dns @@ -0,0 +1,25 @@ +#!/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 + -- cgit v1.2.3