diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-13 01:17:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-13 01:17:29 +0000 |
commit | 57c1bde16797b02a306e2e2e3f25dcf2e8ab38a2 (patch) | |
tree | 27ab66df18917911057e947b62b7a63e65b5d3d4 /distrib/alpha | |
parent | 617401356ce2eb6dad2132d597e82c91dcf58878 (diff) |
put (S)hell into the prompt too
Diffstat (limited to 'distrib/alpha')
-rw-r--r-- | distrib/alpha/ramdisk/dot.profile | 7 |
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="" ;; |