12 lines
170 B
Bash
12 lines
170 B
Bash
#!/bin/bash
|
|
|
|
# check for curl
|
|
|
|
if ! command -v curl &> /dev/null
|
|
then
|
|
echo "This module needs curl to be installed."
|
|
exit
|
|
fi
|
|
|
|
ntfyserver="http://192.168.168:83"
|
|
|