diff options
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index d927ab5614d..038d74084ec 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.147 1999/11/11 02:36:02 millert Exp $ +# $OpenBSD: install.sub,v 1.148 2000/02/25 01:39:13 krw 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 @@ -578,7 +578,7 @@ configure_ifs() { s/^ // /media/p' echo "If the default is not satisfactory, and you wish to use another" - echo "media, copy that line from above (ie. \"media 100baseTX\")" + echo "media, copy that line from above (e.g. \"media 100baseTX\")" echo -n "Media directives? [$_if_extra] " getresp "$_if_extra" if [ "X${resp}" != X"" ]; then @@ -862,7 +862,7 @@ if [ X"$_reuse" = X ]; then if [ "X${_proxy_host}" = X"" ]; then _proxy_host=none fi - echo -n "HTTP/FTP proxy URL? (ie. \"http://proxy:8080\", or \"none\") [${_proxy_host}] " + echo -n "HTTP/FTP proxy URL? (e.g. \"http://proxy:8080\", or \"none\") [${_proxy_host}] " getresp "${_proxy_host}" if [ "X${resp}" = X"none" ]; then unset _proxy_host ftp_proxy http_proxy @@ -1794,7 +1794,7 @@ __EOT elif [ ! -f /mnt/bin/cat ]; then cat << __EOT -You still do not have a /bin/cat in your filesystem (ie. a sample random file +You still do not have a /bin/cat in your filesystem (i.e. a sample random file which you probably want). This seems to indicate that you are still missing important distribution files. __EOT @@ -2073,7 +2073,7 @@ donetconfig() { _nam=`cat /tmp/myname` fi while [ "X${resp}" = X"" ]; do - echo -n "Enter system hostname (short form, ie. \"foo\"): [$_nam] " + echo -n "Enter system hostname (short form, e.g. \"foo\"): [$_nam] " getresp "$_nam" done hostname $resp @@ -2085,7 +2085,7 @@ donetconfig() { sed -e 's/^domain //'` fi while [ "X${resp}" = X"" ]; do - echo -n "Enter DNS domain name (ie. \"bar.com\"): [$FQDN] " + echo -n "Enter DNS domain name (e.g. \"bar.com\"): [$FQDN] " getresp "$FQDN" done FQDN=$resp |