diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-02-14 04:00:08 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-02-14 04:00:08 +0000 |
commit | 52afd89e91d8e805f936976f8effe9a00be40b23 (patch) | |
tree | f8642f0c89603b4a918368c48f6a2973490f92dc /distrib | |
parent | c5e8590e236808988c2bf3620445bd1bf52dd262 (diff) |
Don't copy the 'full' installed protocols(5) or services(5) to the
ramdisk environment during an upgrade. They are large and potentially
modified beyond usefulness. The minimal ones on the install media
are sufficient.
ok ian@ guenther@ 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 c5b5594a33a..c7290ff034d 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.443 2009/02/08 21:02:20 miod Exp $ +# $OpenBSD: install.sub,v 1.444 2009/02/14 04:00:07 krw Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2007 Todd Miller, Theo de Raadt, Ken Westerback @@ -779,7 +779,7 @@ enable_network() { local _f _gw # Copy any network configuration files. N.B.: hosts already copied. - for _f in dhclient.conf resolv.conf resolv.conf.tail protocols services; do + for _f in dhclient.conf resolv.conf resolv.conf.tail; do if [ -f /mnt/etc/$_f ]; then cp /mnt/etc/$_f /etc/$_f fi |