diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-31 16:25:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-31 16:25:16 +0000 |
commit | 4e4d5c539591c17d107dbb1d0b75d51c1f164cd0 (patch) | |
tree | f18b74fe1dfa24604e9a0e9e4b0a15eb79b35875 | |
parent | 8b99e7b6f854fcef121178a4777836d70b6754cd (diff) | |
download | drakx-backup-do-not-use-4e4d5c539591c17d107dbb1d0b75d51c1f164cd0.tar drakx-backup-do-not-use-4e4d5c539591c17d107dbb1d0b75d51c1f164cd0.tar.gz drakx-backup-do-not-use-4e4d5c539591c17d107dbb1d0b75d51c1f164cd0.tar.bz2 drakx-backup-do-not-use-4e4d5c539591c17d107dbb1d0b75d51c1f164cd0.tar.xz drakx-backup-do-not-use-4e4d5c539591c17d107dbb1d0b75d51c1f164cd0.zip |
fix poulpy
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 5d0ea9b44..d225dff0c 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -712,7 +712,7 @@ sub updateModulesFromFloppy { sub configureNetwork { my ($o) = @_; require network::network; - network::network::easy_dhcp($o->{netc}, $o->{intf}) && $o->{netcnx}{type} = 'lan'; + network::network::easy_dhcp($o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan'; $o->SUPER::configureNetwork(); } |