diff options
author | jkh <jkh@FreeBSD.org> | 1995-02-02 20:46:40 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-02-02 20:46:40 +0000 |
commit | 9327ba1eba7405519f51c398c668eb631a52138e (patch) | |
tree | 64a102d908560c80ababc573b999b674e8b033ca | |
parent | 14f499e5c7fecbf865b600cbcf9a9813c52f19ee (diff) | |
download | FreeBSD-src-9327ba1eba7405519f51c398c668eb631a52138e.zip FreeBSD-src-9327ba1eba7405519f51c398c668eb631a52138e.tar.gz |
Fix some last boners in the setup script.
-rw-r--r-- | release/scripts/setup.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/setup.sh b/release/scripts/setup.sh index 2beaaa7..44f9cc2 100644 --- a/release/scripts/setup.sh +++ b/release/scripts/setup.sh @@ -8,25 +8,25 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: setup.sh,v 1.2 1995/01/28 01:18:44 jkh Exp $ +# $Id: setup.sh,v 1.3 1995/02/02 08:31:38 jkh Exp $ # Grab the miscellaneous functions. . /stand/scripts/miscfuncs.sh setup() { - DONE="" - while [ "${DONE}" = "" ]; do + DONE="no" + while [ "${DONE}" = "no" ]; do dialog --title "Configuration Menu" --menu \ "Configure your system for basic single user, network or\n\ development workstation usage. Please select one of the\n\ following options. When you are finished setting up your\n\ -system, select \"done\". To invoke this configuration tool \n\ +system, select \"done\". To invoke this configuration tool\n\ again, type \`/stand/scripts/setup.sh\'." -1 -1 5 \ "tzsetup" "Configure your system's time zone" \ "network" "Configure basic networking parameters" \ "user" "Add a user name for yourself to the system" \ -"guest" "Add a default user \"guest\" \ +"guest" "Add a default user \"guest\"" \ "packages" "Install additional optional software on your system." \ "ports" "Enable use of the ports collection from CD or fileserver." \ "done" "Exit from setup." 2> ${TMP}/menu.tmp.$$ |