diff options
author | damien <damien@mandriva.com> | 2001-09-24 15:10:56 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-09-24 15:10:56 +0000 |
commit | 67dcfd37f6ce000f1e78b5a2c120b2f3ff503241 (patch) | |
tree | 2c12e5809ad9829611e41f0294cf09e1943dd2cc /perl-install/standalone | |
parent | 6242b035c274227fe971d922e3d66e76f706a8c1 (diff) | |
download | drakx-backup-do-not-use-67dcfd37f6ce000f1e78b5a2c120b2f3ff503241.tar drakx-backup-do-not-use-67dcfd37f6ce000f1e78b5a2c120b2f3ff503241.tar.gz drakx-backup-do-not-use-67dcfd37f6ce000f1e78b5a2c120b2f3ff503241.tar.bz2 drakx-backup-do-not-use-67dcfd37f6ce000f1e78b5a2c120b2f3ff503241.tar.xz drakx-backup-do-not-use-67dcfd37f6ce000f1e78b5a2c120b2f3ff503241.zip |
corrected type assignation
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/draknet | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/draknet b/perl-install/standalone/draknet index c0e8358fd..c6cc5df0f 100755 --- a/perl-install/standalone/draknet +++ b/perl-install/standalone/draknet @@ -376,10 +376,10 @@ sub apply { network::netconnect::save_conf($netcnx, $netc, $intf); $netcnx->{type} eq 'modem' and any::pppConfig($in, $netcnx->{$netcnx->{type}}, ''); - $netcnx->{type} eq 'isdn_internal' and network::isdn::isdn_write_config_backend($netcnx->{$netcnx->{type}}, 1, $netc); #$light + $netcnx->{type} eq 'isdn_internal' and network::isdn::isdn_write_config_backend($netcnx->{$netcnx->{type}}, 1, $netc, $netcnx); #$light $netcnx->{type} eq 'isdn_external' and any::pppConfig($in, $netcnx->{$netcnx->{type}}, ''); - $netcnx->{type} eq 'adsl_ppoe' and network::adsl::adsl_conf_backend($netcnx->{$netcnx->{type}}, $netc, 'pppoe'); - $netcnx->{type} eq 'adsl_pptp' and network::adsl::adsl_conf_backend($netcnx->{$netcnx->{type}}, $netc, 'pptp'); + $netcnx->{type} eq 'adsl_ppoe' and network::adsl::adsl_conf_backend($netcnx->{$netcnx->{type}}, $netc, 'pppoe', $netcnx); + $netcnx->{type} eq 'adsl_pptp' and network::adsl::adsl_conf_backend($netcnx->{$netcnx->{type}}, $netc, 'pptp', $netcnx); $netcnx->{dhcp_client} and $netc->{dhcp_client} = $netcnx->{dhcp_client}; network::configureNetwork2($in, $prefix, $netc, $intf); |