17 lines
No EOL
436 B
Bash
Executable file
17 lines
No EOL
436 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ntfy() {
|
|
bash /opt/scripts/ntfy.sh -s "/etc/ixvd/secrets/ntfy/ixvd-backups" -u "https://push.ixvd.net/ixvd-backups" "$@"
|
|
}
|
|
|
|
ntfy -m "performing backup..." -p 1
|
|
if restic \
|
|
-r "/mnt/backups/restic/$(hostname)" \
|
|
-p "/etc/ixvd/secrets/restic/$(hostname).secret" \
|
|
backup \
|
|
--tag auto \
|
|
/srv /home /etc; then
|
|
ntfy -m "backup succeeded" -p 1
|
|
else
|
|
ntfy -m "backup failed" -e "warning,skull" -p 5
|
|
fi |