summaryrefslogtreecommitdiffstats
path: root/release/bininst
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-11-08 03:48:58 +0000
committerjkh <jkh@FreeBSD.org>1994-11-08 03:48:58 +0000
commitc4f8b560c5326cfdc8f5a10f8f87ea1e60ff7ae8 (patch)
tree93a2028461024f150943d50c778bcc7a55bcf1b2 /release/bininst
parentf914144b3ecd5aa90a5a8e9e8a7515020268c0a8 (diff)
downloadFreeBSD-src-c4f8b560c5326cfdc8f5a10f8f87ea1e60ff7ae8.zip
FreeBSD-src-c4f8b560c5326cfdc8f5a10f8f87ea1e60ff7ae8.tar.gz
Actually allow the poor user to get out of the script.
Diffstat (limited to 'release/bininst')
-rwxr-xr-xrelease/bininst7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/bininst b/release/bininst
index 141f703..f739b27 100755
--- a/release/bininst
+++ b/release/bininst
@@ -57,7 +57,7 @@ handle_rval() {
# A simple user-confirmation dialog.
confirm() {
- dialog --title "Please Confirm" --msgbox "$*" 10 72
+ dialog --title "Please Confirm" --msgbox "$*" 4 72
}
# A simple error dialog.
@@ -312,7 +312,7 @@ setup_network()
if handle_rval $?; then
ifconfig_flags=`cat ${TMP}/inputbox.tmp.$$`
fi
- if ! $IFCONFIG inet $interface netmask $netmask $ifconfig_flags ; then
+ if ! $IFCONFIG inet $interface netmask $netmask $ifconfig_flags 2>/dev/ttyv1 ; then
error "Unable to configure interface $interface"
ipaddr=""; interface=""
continue
@@ -327,7 +327,7 @@ setup_network()
if [ "$gateway" = "" ]; then
:;
else
- $ROUTE $route_flags $gateway
+ $ROUTE $route_flags $gateway 2>/dev/ttyv1
fi
fi
rm -f ${TMP}/inputbox.tmp.$$
@@ -406,3 +406,4 @@ while [ $installing -eq 1 ]; do
installing=0
fi
done
+exec /stand/sh
OpenPOWER on IntegriCloud