summaryrefslogtreecommitdiff
path: root/distrib/alpha
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-04-13 01:17:29 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-04-13 01:17:29 +0000
commit57c1bde16797b02a306e2e2e3f25dcf2e8ab38a2 (patch)
tree27ab66df18917911057e947b62b7a63e65b5d3d4 /distrib/alpha
parent617401356ce2eb6dad2132d597e82c91dcf58878 (diff)
put (S)hell into the prompt too
Diffstat (limited to 'distrib/alpha')
-rw-r--r--distrib/alpha/ramdisk/dot.profile7
1 files changed, 5 insertions, 2 deletions
diff --git a/distrib/alpha/ramdisk/dot.profile b/distrib/alpha/ramdisk/dot.profile
index 41603c0c07c..e00f4ba7d16 100644
--- a/distrib/alpha/ramdisk/dot.profile
+++ b/distrib/alpha/ramdisk/dot.profile
@@ -1,5 +1,5 @@
#
-# $OpenBSD: dot.profile,v 1.8 1998/04/13 01:04:26 millert Exp $
+# $OpenBSD: dot.profile,v 1.9 1998/04/13 01:17:16 deraadt Exp $
#
# Copyright (c) 1994 Christopher G. Demetriou
# All rights reserved.
@@ -96,7 +96,7 @@ if [ "X${DONEPROFILE}" = "X" ]; then
# Installing or upgrading?
_forceloop=""
while [ "X$_forceloop" = X"" ]; do
- echo -n '(I)nstall or (U)pgrade? '
+ echo -n '(I)nstall, (U)pgrade, or (S)hell? '
read _forceloop
case "$_forceloop" in
i*|I*)
@@ -107,6 +107,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then
/upgrade
;;
+ s*|S*)
+ ;;
+
*)
_forceloop=""
;;