diff options
author | Joshua Stein <jcs@cvs.openbsd.org> | 2017-08-18 16:57:49 +0000 |
---|---|---|
committer | Joshua Stein <jcs@cvs.openbsd.org> | 2017-08-18 16:57:49 +0000 |
commit | 33959bed813bbf60dd7243a493b17fe2407ebe08 (patch) | |
tree | 70da44979f11759ebcf57743d549da6aabc3ec49 /distrib | |
parent | dc7eab31f674a8986b8c3d2ce9097fcb4ac060ee (diff) |
RFC2606 gives us example.com, show that instead of another private
domain. The non-existent "my.domain" is still offered as the
default choice which must not resolve.
ok rpe, deraadt
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 081bb8afcf1..902e69a9ada 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.1032 2017/08/08 07:14:05 rpe Exp $ +# $OpenBSD: install.sub,v 1.1033 2017/08/18 16:57:48 jcs Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -1919,7 +1919,7 @@ donetconfig() { if ifconfig dhcp >/dev/null 2>&1 && [[ $NIFS == 1 && -n $_dn ]]; then echo "Using DNS domainname $resp" else - ask "DNS domain name? (e.g. 'bar.com')" "$resp" + ask "DNS domain name? (e.g. 'example.com')" "$resp" fi hostname "$(hostname -s).$resp" |