diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-09-01 04:41:14 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-09-01 04:41:14 +0000 |
commit | 8a2f5e13412eed5bc9816595b1d14482faac68da (patch) | |
tree | 9040fa3efc41f0028b834a82b9ebf7e5c5c7934b /perl-install | |
parent | a441d8a7e9f9e7cd791118c7562749cf1abd8d3c (diff) | |
download | drakx-8a2f5e13412eed5bc9816595b1d14482faac68da.tar drakx-8a2f5e13412eed5bc9816595b1d14482faac68da.tar.gz drakx-8a2f5e13412eed5bc9816595b1d14482faac68da.tar.bz2 drakx-8a2f5e13412eed5bc9816595b1d14482faac68da.tar.xz drakx-8a2f5e13412eed5bc9816595b1d14482faac68da.zip |
symlink resolv.conf in install root, so that it works for dhcp too
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/network.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index 748b31055..5cbf9144a 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -422,10 +422,10 @@ sub configureNetwork2 { if (!$::testing) { $netc->{wireless_eth} and $in->do_pkgs->ensure_binary_is_installed('wireless-tools', 'iwconfig', 'auto'); write_conf("$etc/sysconfig/network", $netc); - unless ($netc->{DHCP}) { - write_resolv_conf("$etc/resolv.conf", $netc); - #- write in install root too so that updates and suppl media can be added - write_resolv_conf("/etc/resolv.conf", $netc) if $::isInstall; + write_resolv_conf("$etc/resolv.conf", $netc) unless $netc->{DHCP}; + if ($::isInstall && ! -e "/etc/resolv.conf") { + #- symlink resolv.conf in install root too so that updates and suppl media can be added + symlink "$etc/resolv.conf", "/etc/resolv.conf"; } write_interface_conf("$etc/sysconfig/network-scripts/ifcfg-$_->{DEVICE}", $_, $netc, $::prefix) foreach grep { $_->{DEVICE} ne 'ppp0' } values %$intf; add2hosts("$etc/hosts", $netc->{HOSTNAME}, "127.0.0.1") if $netc->{HOSTNAME}; |