Change pushover directories to 'pushover-client'.

This commit is contained in:
Darren 'Tadgy' Austin 2023-11-02 12:28:14 +00:00
commit b50dd2fde5

View file

@ -11,8 +11,8 @@ CONFIG_API_URL="https://api.pushover.net/1/messages.json"
CONFIG_SOUNDS_API_URL="https://api.pushover.net/1/sounds.json" CONFIG_SOUNDS_API_URL="https://api.pushover.net/1/sounds.json"
# Defaults. # Defaults.
DEFAULT_SYSTEM_DIR="/etc/pushover" DEFAULT_SYSTEM_DIR="/etc/pushover-client"
DEFAULT_USER_DIR="${HOME}/.pushover" DEFAULT_USER_DIR="${HOME}/.pushover-client"
DEFAULT_CONFIG_FILE="default" DEFAULT_CONFIG_FILE="default"
DEFAULT_EXPIRY="3600" DEFAULT_EXPIRY="3600"
DEFAULT_RETRY="60" DEFAULT_RETRY="60"
@ -185,8 +185,9 @@ show_examples() {
Read all configuration from the given <config file> path and use that for Read all configuration from the given <config file> path and use that for
sending the alert. If this path does not exist, search for a file matching sending the alert. If this path does not exist, search for a file matching
the <config file> name in the user's private pushover directory (~/.pushover) the <config file> name in the user's private pushover directory
or the system wide pushover directory (/etc/pushover), in that order. (~/.pushover-client) or the system wide pushover directory
(/etc/pushover-client), in that order.
$SCRIPT <config file> $SCRIPT <config file>
EOF EOF
} }