summaryrefslogtreecommitdiff
path: root/multitech/recipes/ocg-scripts/ocg-scripts-1.0/ocg-set-apn
diff options
context:
space:
mode:
Diffstat (limited to 'multitech/recipes/ocg-scripts/ocg-scripts-1.0/ocg-set-apn')
-rwxr-xr-xmultitech/recipes/ocg-scripts/ocg-scripts-1.0/ocg-set-apn9
1 files changed, 5 insertions, 4 deletions
diff --git a/multitech/recipes/ocg-scripts/ocg-scripts-1.0/ocg-set-apn b/multitech/recipes/ocg-scripts/ocg-scripts-1.0/ocg-set-apn
index 867c24e..5c3985f 100755
--- a/multitech/recipes/ocg-scripts/ocg-scripts-1.0/ocg-set-apn
+++ b/multitech/recipes/ocg-scripts/ocg-scripts-1.0/ocg-set-apn
@@ -1,19 +1,20 @@
#!/bin/bash
-if [[ $# != "1" ]]; then
+if [[ $# != 1 ]]; then
echo "Usage: $(basename $0) APN"
exit 1
fi
apn=$1
+chat_file=/etc/ppp/peers/gsm_chat
-sed -r -i "s/^OK\s+'AT\+CGDCONT=1,\"IP\",\"[^\"]*\"'$/OK 'AT\+CGDCONT=1,\"IP\",\"${apn}\"'/" /etc/ppp/peers/gsm_chat
+sed -r -i "s/^OK\s+'AT\+CGDCONT=1,\"IP\",\"[^\"]*\"'$/OK 'AT\+CGDCONT=1,\"IP\",\"${apn}\"'/" $chat_file
-if [[ $? != "0" ]]; then
+if [[ $? != 0 ]]; then
echo "Failed to change APN"
exit 1
else
- echo "Set APN to \"${apn}\""
+ echo "Set APN to \"${apn}\" in $chat_file"
fi
exit 0