homelab-nomad/services/backups/jobs/sabnzbd.hcl

33 lines
509 B
HCL
Raw Normal View History

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