diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2000-04-01 23:20:59 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2000-04-01 23:20:59 +0000 |
commit | 80f2bf84f0b4b4c5c1e4d6d26fa86dba249cedcb (patch) | |
tree | 1c35d344215794881c985e7c69e2a6c6ddbb4958 /emulators/vmware | |
parent | f7848348fca5cb66cc5a4bd3a61b630d76b46fb2 (diff) | |
download | ports-80f2bf84f0b4b4c5c1e4d6d26fa86dba249cedcb.tar.gz ports-80f2bf84f0b4b4c5c1e4d6d26fa86dba249cedcb.zip |
Notes
Diffstat (limited to 'emulators/vmware')
-rw-r--r-- | emulators/vmware/scripts/configure | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/emulators/vmware/scripts/configure b/emulators/vmware/scripts/configure index 15ab00cbd9a7..75ec1773b1bf 100644 --- a/emulators/vmware/scripts/configure +++ b/emulators/vmware/scripts/configure @@ -10,8 +10,9 @@ title="VMware network options" get_network_settings() { result=`/usr/bin/dialog --title "$title" --clear --inputbox \ "\n"\ -"What will be the IP address of your host on your private network?:"\ - 10 40 $host_ip \ +"What will be the IP address of your host\n"\ +"on your private network?:"\ + 10 50 $host_ip \ 2>&1 >/dev/tty ` case $? in @@ -28,8 +29,9 @@ get_network_settings() { result=`/usr/bin/dialog --title "$title" --clear --inputbox \ "\n"\ -"What will be the netmask of your private network?:"\ - 10 40 $netmask \ +"What will be the netmask of your private\n"\ +"network?:"\ + 10 50 $netmask \ 2>&1 >/dev/tty ` case $? in @@ -55,13 +57,13 @@ do_network() { "Are the following options correct?\n\n"\ "IP address: $host_ip\n"\ "Netmask: $netmask\n"\ - 10 40 + 10 50 [ $? -eq 0 ] && return 0 /usr/bin/dialog --title "Confirmation" --clear --yesno \ "\n"\ "Do you want to edit network options again?\n"\ - 10 40 + 10 50 [ $? -eq 0 ] && continue /usr/bin/dialog --title "Confirmation" --clear --yesno \ @@ -88,7 +90,7 @@ if [ _$BATCH = _ ]; then "The following options will be used.\n\n"\ "IP address: $host_ip\n"\ "Netmask: $netmask\n"\ - 10 40 + 10 50 fi else #BATCH [ -f ${WRKDIR}/Makefile.inc.net ] && exit |