summaryrefslogtreecommitdiffstats
path: root/lib/network/connection/cellular.pm
diff options
context:
space:
mode:
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 {