homelab-nomad/services/backups/jobs/sabnzbd.hcl
2023-02-27 11:54:33 -08:00

27 lines
437 B
HCL

job "sabnzbd" {
schedule = "@daily"
config {
repo = "rclone::ftp,env_auth:/nomad/sabnzbd"
passphrase = env("BACKUP_PASSPHRASE")
}
backup {
paths = ["/data/media-write/Downloads/sabnzbd"]
# Because path is absolute
restore_opts {
Target = "/"
}
}
forget {
KeepLast = 2
KeepHourly = 24
KeepDaily = 30
KeepWeekly = 8
KeepMonthly = 6
KeepYearly = 2
Prune = true
}
}