summaryrefslogtreecommitdiff
path: root/root
Side-by-side diff
Diffstat (limited to 'root') (more/less context) (ignore whitespace changes)
-rwxr-xr-xroot/usr/bin/changedns5
1 files changed, 3 insertions, 2 deletions
diff --git a/root/usr/bin/changedns b/root/usr/bin/changedns
index 5059d08..edc48bc 100755
--- a/root/usr/bin/changedns
+++ b/root/usr/bin/changedns
@@ -12,13 +12,14 @@ usage ( ) {
[ "$#" -le 1 ] && usage
shift
-[ -f /etc/resolv.conf ] && cp /etc/resolv.conf $tmpfile
+[ ! -e "/etc/resolv.conf" ] && touch /etc/resolv.conf
+cp /etc/resolv.conf $tmpfile
case "$arg1" in
"-a")
for ip in "$@"; do
echo $ip
grep -sq "^nameserver $ip\$" $tmpfile || echo "nameserver $ip" >>$tmpfile
@@ -32,11 +33,11 @@ case "$arg1" in
;;
*)
usage
;;
esac
-[ -f $tmpfile ] && cp $tmpfile /etc/resolv.conf
+[ -e $tmpfile ] && cp $tmpfile /etc/resolv.conf
rm -f $tmpfile
exit 0