From 344a262d83c358f9dcc645b4890dded3e14ec88a Mon Sep 17 00:00:00 2001 From: Brandon Bayer Date: Mon, 4 Apr 2016 15:16:43 -0500 Subject: ppp:feat: add lvw2 chat script --- recipes-core/mlinux-scripts/mlinux-scripts-1.0/mlinux-set-apn | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'recipes-core/mlinux-scripts') diff --git a/recipes-core/mlinux-scripts/mlinux-scripts-1.0/mlinux-set-apn b/recipes-core/mlinux-scripts/mlinux-scripts-1.0/mlinux-set-apn index 371ba7e..65e01b8 100755 --- a/recipes-core/mlinux-scripts/mlinux-scripts-1.0/mlinux-set-apn +++ b/recipes-core/mlinux-scripts/mlinux-scripts-1.0/mlinux-set-apn @@ -26,15 +26,17 @@ if [[ $# != 1 ]]; then fi apn=$1 -chat_file=/etc/ppp/peers/gsm_chat +gsm_chat_file=/etc/ppp/peers/gsm_chat +lvw2_chat_file=/etc/ppp/peers/lvw2_chat -sed -r -i "s/^OK\s+'AT\+CGDCONT=1,\"IP\",\"[^\"]*\"'$/OK 'AT\+CGDCONT=1,\"IP\",\"${apn}\"'/" $chat_file +sed -r -i "s/^OK\s+'AT\+CGDCONT=1,\"IP\",\"[^\"]*\"'$/OK 'AT\+CGDCONT=1,\"IP\",\"${apn}\"'/" $gsm_chat_file +sed -r -i "s/^OK\s+'AT\+CGDCONT=3,\"IPV4V6\",\"[^\"]*\"'$/OK 'AT\+CGDCONT=3,\"IPV4V6\",\"${apn}\"'/" $lvw2_chat_file if [[ $? != 0 ]]; then echo "Failed to change APN" exit 1 else - echo "Set APN to \"${apn}\" in $chat_file" + echo "Set APN to \"${apn}\" in $gsm_chat_file and $lvw2_chat_file" fi exit 0 -- cgit v1.2.3