diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-01 10:01:17 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-01 10:01:17 +0000 |
commit | 4c42dbbbb7eec9d1f1d965e57d857226ec6fdf85 (patch) | |
tree | e44b1babfb18e97932824f001a4e4e7a8f931d4c /perl-install | |
parent | 789a8842a51eba5a5f2c965ca39bccf2c1c402aa (diff) | |
download | drakx-4c42dbbbb7eec9d1f1d965e57d857226ec6fdf85.tar drakx-4c42dbbbb7eec9d1f1d965e57d857226ec6fdf85.tar.gz drakx-4c42dbbbb7eec9d1f1d965e57d857226ec6fdf85.tar.bz2 drakx-4c42dbbbb7eec9d1f1d965e57d857226ec6fdf85.tar.xz drakx-4c42dbbbb7eec9d1f1d965e57d857226ec6fdf85.zip |
fix sagem configuration (we were skipping some steps)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/adsl.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index ff4939583..41d362ced 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -47,7 +47,7 @@ If you don't know, choose 'use pppoe'"), $netcnx->{"adsl_$type"} = {}; adsl_conf($netcnx->{"adsl_$type"}, $netc, $intf, $type) or goto conf_adsl_step1; } - if ($type =~ /Sagem/) { + if ($type =~ /sagem/) { $type = 'sagem' . ($type =~ /dhcp/ ? "_dhcp" : ""); $in->do_pkgs->install(qw(adiusbadsl), if_($type =~ /dhcp/, qw(dhcpcd))) if !$::testing; $netcnx->{type} = "adsl_$type"; |