diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-10-08 03:55:43 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-10-08 03:55:43 +0000 |
commit | 99c3c7c1050c91077542897e115074310d5f47fa (patch) | |
tree | b2196d7ac05239705bd389d2623ea74e4974e8ee /distrib | |
parent | 0ee579c9e55f112e7c0fc7e65ac8422c748bceea (diff) |
make X windows question default to yes
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/i386/floppies/common/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/i386/floppies/common/install.md b/distrib/i386/floppies/common/install.md index 10508847c96..29218803b0f 100644 --- a/distrib/i386/floppies/common/install.md +++ b/distrib/i386/floppies/common/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.6 1999/09/25 22:21:03 deraadt Exp $ +# $OpenBSD: install.md,v 1.7 1999/10/08 03:55:42 millert Exp $ # # # Copyright rc) 1996 The NetBSD Foundation, Inc. @@ -76,8 +76,8 @@ md_get_partition_range() { md_questions() { echo - echo -n "Do you expect to run the X Window System? [n] " - getresp "n" + echo -n "Do you expect to run the X Window System? [y] " + getresp y case "$resp" in y*|Y*) xfree86=y |