2021-05-07 09:10:55 -04:00

20 lines
293 B
Bash

#!/bin/bash
set +x
if [[ -z "${URL}" ]]
then
echo "Please defind a URL"
exit 1
fi
if [[ -z "${BUNNYCDN_API}" ]]
then
echo "Please define API_TOKEN"
exit 1
fi
curl -X POST \
-H 'AccessKey: '"${BUNNYCDN_API}"'' \
-H 'Content-Length: 0' \
'https://api.bunny.net/purge?url='"${URL}"