diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-05-15 22:04:31 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-05-15 22:04:31 +0000 |
commit | 1b3e50b2d7af1700f89ac6fb46ac54c52c9cc7f5 (patch) | |
tree | d083259607ccd809817ae09df15e7d5740d57574 /lib/network/connection/cellular_bluetooth.pm | |
parent | 0f974a903757136323392df22f62d0425792e6f3 (diff) | |
download | drakx-net-1b3e50b2d7af1700f89ac6fb46ac54c52c9cc7f5.tar drakx-net-1b3e50b2d7af1700f89ac6fb46ac54c52c9cc7f5.tar.gz drakx-net-1b3e50b2d7af1700f89ac6fb46ac54c52c9cc7f5.tar.bz2 drakx-net-1b3e50b2d7af1700f89ac6fb46ac54c52c9cc7f5.tar.xz drakx-net-1b3e50b2d7af1700f89ac6fb46ac54c52c9cc7f5.zip |
write cellular settings later (should not change behavior)
Diffstat (limited to 'lib/network/connection/cellular_bluetooth.pm')
-rw-r--r-- | lib/network/connection/cellular_bluetooth.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/network/connection/cellular_bluetooth.pm b/lib/network/connection/cellular_bluetooth.pm index 6e334ca..80c6cb4 100644 --- a/lib/network/connection/cellular_bluetooth.pm +++ b/lib/network/connection/cellular_bluetooth.pm @@ -73,8 +73,6 @@ sub search_services { sub write_settings { my ($self) = @_; - $self->write_cellular_settings; - my $dev = $self->get_rfcomm_device; output("$::prefix/etc/bluetooth/rfcomm.conf", qq( rfcomm$dev { @@ -89,6 +87,7 @@ rfcomm$dev { $self->{access}{at_commands} = [ qq(AT+CGDCONT=$cid,"IP","$self->{access}{apn}") ]; $self->{access}{dial_number} = "*99***$cid#"; + $self->write_cellular_settings; $self->SUPER::write_settings; } |