mirror of
https://github.com/aipeach/cloudflare-api-v4-ddns.git
synced 2025-01-18 22:09:28 +08:00
Fix abnormal exit in alpine
This commit is contained in:
parent
156a9bc121
commit
e1bb3543cf
4
cf-v4-ddns.sh
Normal file → Executable file
4
cf-v4-ddns.sh
Normal file → Executable file
@ -110,8 +110,8 @@ if [ -f $ID_FILE ] && [ $(wc -l $ID_FILE | cut -d " " -f 1) == 4 ] \
|
|||||||
CFRECORD_ID=$(sed -n '2,1p' "$ID_FILE")
|
CFRECORD_ID=$(sed -n '2,1p' "$ID_FILE")
|
||||||
else
|
else
|
||||||
echo "Updating zone_identifier & record_identifier"
|
echo "Updating zone_identifier & record_identifier"
|
||||||
CFZONE_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$CFZONE_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Po '(?<="id":")[^"]*' | head -1 )
|
CFZONE_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$CFZONE_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Eo '"id":"[^"]*'|sed 's/"id":"//' | head -1 )
|
||||||
CFRECORD_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$CFZONE_ID/dns_records?name=$CFRECORD_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Po '(?<="id":")[^"]*' | head -1 )
|
CFRECORD_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$CFZONE_ID/dns_records?name=$CFRECORD_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Eo '"id":"[^"]*'|sed 's/"id":"//' | head -1 )
|
||||||
echo "$CFZONE_ID" > $ID_FILE
|
echo "$CFZONE_ID" > $ID_FILE
|
||||||
echo "$CFRECORD_ID" >> $ID_FILE
|
echo "$CFRECORD_ID" >> $ID_FILE
|
||||||
echo "$CFZONE_NAME" >> $ID_FILE
|
echo "$CFZONE_NAME" >> $ID_FILE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user