From de37f626c7a285b36045b1280e2a05070793a50f Mon Sep 17 00:00:00 2001 From: Gandalf Date: Sat, 5 Feb 2022 18:36:42 +0100 Subject: [PATCH] Kleine Korrekturen --- callerid.sh | 4 ++-- fax.sh | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/callerid.sh b/callerid.sh index 7a914a7..1ba2f44 100755 --- a/callerid.sh +++ b/callerid.sh @@ -1,5 +1,5 @@ BASEPATH=$(dirname $(realpath $0)) -. $BASEPATH/authorization.sh +#. $BASEPATH/authorization.sh CALLER_ID="+49" CALLER_ID_JSON= case "$SPOOF" in @@ -19,5 +19,5 @@ case "$SPOOF" in ;; esac OLD_CALLER_ID_JSON=$(curl --request GET --header 'Content-Type: application/json' --header 'Accept: application/json' --header "Authorization: Bearer $AUTH_TOKEN" "https://api.sipgate.com/v2/w0/faxlines/f0/callerid" -s) -#REPLY=$(curl --request PUT --header 'Content-Type: application/json' --header 'Accept: application/json' --header "Authorization: Bearer $AUTH_TOKEN" --data ${CALLER_ID_JSON} "https://api.sipgate.com/v2/w0/faxlines/f0/callerid" -s) +REPLY=$(curl --request PUT --header 'Content-Type: application/json' --header 'Accept: application/json' --header "Authorization: Bearer $AUTH_TOKEN" --data ${CALLER_ID_JSON} "https://api.sipgate.com/v2/w0/faxlines/f0/callerid" -s) echo $OLD_CALLER_ID_JSON $CALLER_ID_JSON diff --git a/fax.sh b/fax.sh index 4a42b75..5163239 100755 --- a/fax.sh +++ b/fax.sh @@ -44,6 +44,8 @@ do shift ;; "--spoof-callerid") SPOOF=1 + shift + ;; "--") shift break ;;