summaryrefslogtreecommitdiff
path: root/distrib/miniroot/dot.profile
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-01-10 13:32:57 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-01-10 13:32:57 +0000
commitda18a68d9ed8b817c7ecffb3b260d61537271671 (patch)
treec58d3c6abd8d390a9426bf2dca66f03fefd5c868 /distrib/miniroot/dot.profile
parent0591615e994f4d9210090ef4f3dfe8b22b1b933c (diff)
remove and move some chatty byte during upgrade startup; ok krw, idea from mcbride
Diffstat (limited to 'distrib/miniroot/dot.profile')
-rw-r--r--distrib/miniroot/dot.profile14
1 files changed, 3 insertions, 11 deletions
diff --git a/distrib/miniroot/dot.profile b/distrib/miniroot/dot.profile
index 0442e5cb240..3bac832dfb3 100644
--- a/distrib/miniroot/dot.profile
+++ b/distrib/miniroot/dot.profile
@@ -1,4 +1,4 @@
-# $OpenBSD: dot.profile,v 1.13 2009/06/12 03:30:00 deraadt Exp $
+# $OpenBSD: dot.profile,v 1.14 2010/01/10 13:32:56 deraadt Exp $
# $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $
#
# Copyright (c) 2009 Kenneth R. Westerback
@@ -64,17 +64,9 @@ __EOT
while :; do
read REPLY?'(I)nstall, (U)pgrade or (S)hell? '
case $REPLY in
- i*|I*) echo "\nCool! Let's get to it.\n"
- /install && break
+ i*|I*) /install && break
;;
- u*|U*) cat <<__EOT
-
-NOTE: Once your system has been upgraded, you must manually merge any
-changes to files in the 'etc' set into the files already on your system.
-sysmerge(8) can help.
-
-__EOT
- /upgrade && break
+ u*|U*) /upgrade && break
;;
s*|S*) break
;;