fix: watchdog webhook body variables injector
This commit is contained in:
parent
cb3bc207b9
commit
6e7a0eb662
@ -170,7 +170,7 @@ function notify_error() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Replace subject and body placeholders
|
# Replace subject and body placeholders
|
||||||
WEBHOOK_BODY=$(echo ${WATCHDOG_NOTIFY_WEBHOOK_BODY} | sed "s|\$SUBJECT\|\${SUBJECT}|$SUBJECT|g" | sed "s|\$BODY\|\${BODY}|$BODY|")
|
WEBHOOK_BODY=$(echo ${WATCHDOG_NOTIFY_WEBHOOK_BODY} | sed "s/\$SUBJECT\|\${SUBJECT}/$SUBJECT/g" | sed "s/\$BODY\|\${BODY}/$BODY/g")
|
||||||
|
|
||||||
# POST to webhook
|
# POST to webhook
|
||||||
curl -X POST -H "Content-Type: application/json" ${CURL_VERBOSE} -d "${WEBHOOK_BODY}" ${WATCHDOG_NOTIFY_WEBHOOK}
|
curl -X POST -H "Content-Type: application/json" ${CURL_VERBOSE} -d "${WEBHOOK_BODY}" ${WATCHDOG_NOTIFY_WEBHOOK}
|
||||||
|
Loading…
Reference in New Issue
Block a user