14 lines
242 B
Bash
14 lines
242 B
Bash
#!/bin/bash
|
|
|
|
# was split out to a seperate project, but will be pulled in when done
|
|
|
|
# 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"
|
|
|