summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-10-11 02:50:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-10-11 02:50:48 +0000
commit78b758cb28ebcc306727339b351f22c3f5c98426 (patch)
tree6d235c7855c70a5a41b0d1cc1a8050d730dc4425 /distrib
parent80765729771eee2fec46e51fe31da38e648f8c72 (diff)
prettier prompts
Diffstat (limited to 'distrib')
-rw-r--r--distrib/miniroot/install.sh6
-rw-r--r--distrib/miniroot/install.sub6
2 files changed, 6 insertions, 6 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh
index 3ab867c80bd..cd5c629203a 100644
--- a/distrib/miniroot/install.sh
+++ b/distrib/miniroot/install.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sh,v 1.39 1998/10/07 02:40:45 deraadt Exp $
+# $OpenBSD: install.sh,v 1.40 1998/10/11 02:50:47 deraadt Exp $
# $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
@@ -323,7 +323,7 @@ case "$resp" in
_nam=`cat /tmp/myname`
fi
while [ "X${resp}" = X"" ]; do
- echo -n "Enter system hostname (short form): [$_nam] "
+ echo -n "Enter system hostname (short form, ie. \"foo\"): [$_nam] "
getresp "$_nam"
done
hostname $resp
@@ -335,7 +335,7 @@ case "$resp" in
sed -e 's/^domain //'`
fi
while [ "X${resp}" = X"" ]; do
- echo -n "Enter DNS domain name: [$FQDN] "
+ echo -n "Enter DNS domain name (ie. \"bar.com\"): [$FQDN] "
getresp "$FQDN"
done
FQDN=$resp
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index 1384a2cb47d..1c327874e79 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sub,v 1.103 1998/10/10 20:54:24 deraadt Exp $
+# $OpenBSD: install.sub,v 1.104 1998/10/11 02:50:47 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
@@ -1400,7 +1400,7 @@ esac
_partition_range=`md_get_partition_range`
resp="" # force one iteration
while [ "X${resp}" = X"" ]; do
- echo -n "Partition? [c] "
+ echo -n "CDROM partition to mount (normally \"c\")? [c] "
getresp "c"
case "$resp" in
$_partition_range)
@@ -1424,7 +1424,7 @@ ffs Berkeley Fast Filesystem
__install_cdrom_2
resp="" # force one iteration
while [ "X${resp}" = X"" ]; do
- echo -n "Which filesystem type? [cd9660] "
+ echo -n "Which filesystem type (Official OpenBSD CDROM are cd9660)? [cd9660] "
getresp "cd9660"
case "$resp" in
cd9660|ffs)