diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-10 20:56:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-10 20:56:33 +0000 |
commit | a81105eb6ebe20e0b7489711be2ba16c8963a178 (patch) | |
tree | 4685cd290550a817413a5b61b935161ace2f433c /distrib | |
parent | 3ebabc338723770f29675c0dd12b0a75de4fda42 (diff) |
init resolv.conf in "lookup file bind" mode
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index 447ae678871..9e27a0c7d2a 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.17 1997/10/30 05:23:44 millert Exp $ +# $OpenBSD: install.sh,v 1.18 1997/11/10 20:56:32 deraadt Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -319,6 +319,7 @@ case "$resp" in echo "domain $FQDN" > /tmp/resolv.conf echo "nameserver $resp" >> /tmp/resolv.conf echo "search $FQDN" >> /tmp/resolv.conf + echo "lookup file bind" >> /tmp/resolv.conf echo -n "Would you like to use the nameserver now? [y] " getresp "y" |