summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1998-04-13 01:17:16 +0000
committerderaadt <deraadt@openbsd.org>1998-04-13 01:17:16 +0000
commit9bcfd5b489227bc1ee11ac4be0def789506e0df7 (patch)
tree2809178489367b007bb890a46a1c90674b3bbefa
parentprompt for install/upgrade like i386 (diff)
downloadwireguard-openbsd-9bcfd5b489227bc1ee11ac4be0def789506e0df7.tar.xz
wireguard-openbsd-9bcfd5b489227bc1ee11ac4be0def789506e0df7.zip
put (S)hell into the prompt too
-rw-r--r--distrib/alpha/ramdisk/dot.profile7
-rw-r--r--distrib/amiga/miniroot/dot.profile7
-rw-r--r--distrib/amiga/ramdisk/dot.profile7
-rw-r--r--distrib/atari/miniroot/dot.profile5
-rw-r--r--distrib/i386/floppies/ramdisk/dot.profile7
-rw-r--r--distrib/sparc/miniroot/dot.profile7
-rw-r--r--distrib/sparc/ramdisk/dot.profile7
7 files changed, 34 insertions, 13 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=""
;;
diff --git a/distrib/amiga/miniroot/dot.profile b/distrib/amiga/miniroot/dot.profile
index 220e2270691..6a87c0283af 100644
--- a/distrib/amiga/miniroot/dot.profile
+++ b/distrib/amiga/miniroot/dot.profile
@@ -1,4 +1,4 @@
-# $OpenBSD: dot.profile,v 1.3 1997/10/20 22:24:01 millert Exp $
+# $OpenBSD: dot.profile,v 1.4 1998/04/13 01:17:17 deraadt Exp $
# $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $
#
# Copyright (c) 1995 Jason R. Thorpe
@@ -117,7 +117,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*)
@@ -128,6 +128,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then
/upgrade
;;
+ s*|S*)
+ ;;
+
*)
_forceloop=""
;;
diff --git a/distrib/amiga/ramdisk/dot.profile b/distrib/amiga/ramdisk/dot.profile
index bd136661a04..546eaa2650b 100644
--- a/distrib/amiga/ramdisk/dot.profile
+++ b/distrib/amiga/ramdisk/dot.profile
@@ -1,4 +1,4 @@
-# $OpenBSD: dot.profile,v 1.2 1997/10/20 22:24:02 millert Exp $
+# $OpenBSD: dot.profile,v 1.3 1998/04/13 01:17:19 deraadt Exp $
# $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $
#
# Copyright (c) 1995 Jason R. Thorpe
@@ -115,7 +115,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*)
@@ -126,6 +126,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then
/upgrade
;;
+ s*|S*)
+ ;;
+
*)
_forceloop=""
;;
diff --git a/distrib/atari/miniroot/dot.profile b/distrib/atari/miniroot/dot.profile
index 793a760bb85..ddb13ec2abd 100644
--- a/distrib/atari/miniroot/dot.profile
+++ b/distrib/atari/miniroot/dot.profile
@@ -84,7 +84,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*)
@@ -95,6 +95,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then
/upgrade
;;
+ s*|S*)
+ ;;
+
*)
_forceloop=""
;;
diff --git a/distrib/i386/floppies/ramdisk/dot.profile b/distrib/i386/floppies/ramdisk/dot.profile
index 4626bdc9b1f..4979853d3fd 100644
--- a/distrib/i386/floppies/ramdisk/dot.profile
+++ b/distrib/i386/floppies/ramdisk/dot.profile
@@ -1,4 +1,4 @@
-# $OpenBSD: dot.profile,v 1.8 1998/03/13 20:50:49 deraadt Exp $
+# $OpenBSD: dot.profile,v 1.9 1998/04/13 01:17:22 deraadt Exp $
# $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $
#
# Copyright (c) 1995 Jason R. Thorpe
@@ -61,7 +61,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*)
@@ -72,6 +72,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then
/upgrade
;;
+ s*|S*)
+ ;;
+
*)
_forceloop=""
;;
diff --git a/distrib/sparc/miniroot/dot.profile b/distrib/sparc/miniroot/dot.profile
index 18f136765fb..accd8077ce0 100644
--- a/distrib/sparc/miniroot/dot.profile
+++ b/distrib/sparc/miniroot/dot.profile
@@ -1,4 +1,4 @@
-# $OpenBSD: dot.profile,v 1.9 1997/10/20 22:24:14 millert Exp $
+# $OpenBSD: dot.profile,v 1.10 1998/04/13 01:17:23 deraadt Exp $
# $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $
#
# Copyright (c) 1995 Jason R. Thorpe
@@ -117,7 +117,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, (S)hell? '
read _forceloop
case "$_forceloop" in
i*|I*)
@@ -128,6 +128,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then
/upgrade
;;
+ s*|S*)
+ ;;
+
*)
_forceloop=""
;;
diff --git a/distrib/sparc/ramdisk/dot.profile b/distrib/sparc/ramdisk/dot.profile
index d6dfe14a250..5417a7111d8 100644
--- a/distrib/sparc/ramdisk/dot.profile
+++ b/distrib/sparc/ramdisk/dot.profile
@@ -1,4 +1,4 @@
-# $OpenBSD: dot.profile,v 1.5 1997/10/20 22:24:15 millert Exp $
+# $OpenBSD: dot.profile,v 1.6 1998/04/13 01:17:28 deraadt Exp $
# $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $
#
# Copyright (c) 1995 Jason R. Thorpe
@@ -117,7 +117,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*)
@@ -128,6 +128,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then
/upgrade
;;
+ s*|S*)
+ ;;
+
*)
_forceloop=""
;;