So for pushover notification of my backups, I followed this thread:
I made the following report.tmpl which works
{
"BackupResult": "{{.result}}",
"BeginTime": "{{.start_time}}",
"TotalFiles": "{{.total_files}}",
"Storage": "{{.storage_url}}",
"token": "apptoken",
"user": "usertoken",
"message": "Backup {{.result}}. {{.total_files}} files in {{.directory}}",
"title": "Duplicacy Backup Completed"
}
However, what does not work is that it will send push notification no matter if the Backup fails or succeeds. Even if I have checked this:
So what am I doing wrong? Or must my template be different for it to have the behavior Iâm looking for?
This is quite nice, but I might look into the healthchecks.io solution, which will instead notify me if Duplicacy hasnât checked in for a set amount of time, because if my backup unit or container has some problems Iâll never know about it otherwise.