diff options
author | John Crispin <blogic@openwrt.org> | 2014-10-08 08:00:45 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-10-08 08:00:45 +0000 |
commit | f4dd6b28f2745d9f7136b546ca7187a547e1a998 (patch) | |
tree | 75e0e14f4400cc77143affbbf371891531082a74 | |
parent | fd3d61ef086fd7e00eeda1e06d196b33493a850b (diff) | |
download | upstream-f4dd6b28f2745d9f7136b546ca7187a547e1a998.tar.gz upstream-f4dd6b28f2745d9f7136b546ca7187a547e1a998.tar.bz2 upstream-f4dd6b28f2745d9f7136b546ca7187a547e1a998.zip |
uqmi: dont use proto_block_restart
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42835 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh index ec33baacb0..a611878fb6 100755 --- a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh +++ b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh @@ -41,13 +41,13 @@ proto_qmi_setup() { [ -n "$device" ] || { echo "No control device specified" proto_notify_error "$interface" NO_DEVICE - proto_block_restart "$interface" + proto_set_available "$interface" 0 return 1 } [ -c "$device" ] || { echo "The specified control device does not exist" proto_notify_error "$interface" NO_DEVICE - proto_block_restart "$interface" + proto_set_available "$interface" 0 return 1 } @@ -57,7 +57,7 @@ proto_qmi_setup() { [ -n "$ifname" ] || { echo "The interface could not be found." proto_notify_error "$interface" NO_IFACE - proto_block_restart "$interface" + proto_set_available "$interface" 0 return 1 } @@ -79,7 +79,6 @@ proto_qmi_setup() { [ -n "$apn" ] || { echo "No APN specified" proto_notify_error "$interface" NO_APN - proto_block_restart "$interface" return 1 } @@ -99,7 +98,6 @@ proto_qmi_setup() { [ $? -ne 0 ] && { echo "Unable to obtain client ID" proto_notify_error "$interface" NO_CID - proto_block_restart "$interface" return 1 } |