summaryrefslogtreecommitdiffstats
path: root/perl-install/network/network.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-07-23 12:55:42 +0000
committerOlivier Blin <oblin@mandriva.org>2004-07-23 12:55:42 +0000
commit30d91c3e71986c50b29dd782532e6c064a168bd3 (patch)
tree2be1ae6b053b15d83d20491b19e101f109b2b343 /perl-install/network/network.pm
parent0b671cefde50a8d50cf5df3653ea923bc904ea15 (diff)
downloaddrakx-30d91c3e71986c50b29dd782532e6c064a168bd3.tar
drakx-30d91c3e71986c50b29dd782532e6c064a168bd3.tar.gz
drakx-30d91c3e71986c50b29dd782532e6c064a168bd3.tar.bz2
drakx-30d91c3e71986c50b29dd782532e6c064a168bd3.tar.xz
drakx-30d91c3e71986c50b29dd782532e6c064a168bd3.zip
hey, I suck, that's DIAL_ON_IFUP, not DIAL_ON_BOOT
Diffstat (limited to 'perl-install/network/network.pm')
-rw-r--r--perl-install/network/network.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm
index f75d61c9a..1af6b6a44 100644
--- a/perl-install/network/network.pm
+++ b/perl-install/network/network.pm
@@ -167,7 +167,7 @@ sub write_interface_conf {
setVarsInSh($file, $intf, qw(DEVICE BOOTPROTO IPADDR NETMASK NETWORK BROADCAST ONBOOT HWADDR MII_NOT_SUPPORTED),
qw(WIRELESS_MODE WIRELESS_ESSID WIRELESS_NWID WIRELESS_FREQ WIRELESS_SENS WIRELESS_RATE WIRELESS_ENC_KEY WIRELESS_RTS WIRELESS_FRAG WIRELESS_IWCONFIG WIRELESS_IWSPY WIRELESS_IWPRIV),
if_($intf->{BOOTPROTO} eq "dhcp", qw(DHCP_HOSTNAME NEEDHOSTNAME)),
- if_($intf->{DEVICE} =~ /^ippp\d+$/, qw(DIAL_ON_BOOT))
+ if_($intf->{DEVICE} =~ /^ippp\d+$/, qw(DIAL_ON_IFUP))
);
log::explanations("written $intf->{DEVICE} interface configuration in $file");
}