blob: 7165a4a96dd355d31d37877e2428010c9f821d39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
#BLURB="Configure basic network settings"
TMP=/var/log/setup/tmp
dialog --title "CONFIGURE NETWORK?" --yesno "Would you like to \
configure your network?" 5 60
if [ $? = 0 ]; then
while [ 0 ]; do # we're gonna do this until we get it right :-)
sh sbin/netconfig $*
if [ "$?" = "0" ]; then # success
break;
fi
done
fi
|