From b230cac3c38258e989f4ff954e6e8a81babcc879 Mon Sep 17 00:00:00 2001 From: Eugeni Dodonov Date: Mon, 19 Oct 2009 18:05:19 +0000 Subject: import cellular providers from mobile-broadband-provider-info project --- lib/network/connection/cellular.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/network/connection/cellular.pm') 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 { -- cgit v1.2.1