4 lines
196 B
Bash
4 lines
196 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# TODO: Verify that variables are set properly
|
||
|
curl "${PLUGIN_GOTIFY_URL}/message?token=${PLUGIN_GOTIFY_TOKEN}" -F "title=${PLUGIN_TITLE}" -F "message=${PLUGIN_MESSAGE}" -F "priority=5"
|