summaryrefslogtreecommitdiffstats
path: root/lib/network/connection/cellular.pm
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni@mandriva.org>2009-10-19 18:05:19 +0000
committerEugeni Dodonov <eugeni@mandriva.org>2009-10-19 18:05:19 +0000
commitb230cac3c38258e989f4ff954e6e8a81babcc879 (patch)
tree9825094fc309d6f6c0751fcad762a5fe84cdb3b2 /lib/network/connection/cellular.pm
parent750410c9af6e0a80a8c382c3e26fd24484e92283 (diff)
downloaddrakx-net-b230cac3c38258e989f4ff954e6e8a81babcc879.tar
drakx-net-b230cac3c38258e989f4ff954e6e8a81babcc879.tar.gz
drakx-net-b230cac3c38258e989f4ff954e6e8a81babcc879.tar.bz2
drakx-net-b230cac3c38258e989f4ff954e6e8a81babcc879.tar.xz
drakx-net-b230cac3c38258e989f4ff954e6e8a81babcc879.zip
import cellular providers from mobile-broadband-provider-info project
Diffstat (limited to 'lib/network/connection/cellular.pm')
-rw-r--r--lib/network/connection/cellular.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/network/connection/cellular.pm b/lib/network/connection/cellular.pm
index 71509c4..4c58338 100644
--- a/lib/network/connection/cellular.pm
+++ b/lib/network/connection/cellular.pm
@@ -8,8 +8,12 @@ use common;
my $cellular_d = "/etc/sysconfig/network-scripts/cellular.d";
sub get_providers {
+ # manually-defined providers
require network::connection::providers::cellular;
- (\%network::connection::providers::cellular::data, '|');
+ # providers imported from mobile-broadband-provider-info
+ require network::connection::providers::cellular_extra;
+ my %providers = (%network::connection::providers::cellular::data, %network::connection::providers::cellular_extra::data);
+ (\%providers, '|');
}
sub get_cellular_settings_file {