homelab-nomad/backups/jobs/sabnzbd.hcl

37 lines
578 B
HCL
Raw Normal View History

2023-02-27 19:43:07 +00:00
job "sabnzbd" {
schedule = "@daily"
config {
repo = "s3://backups-minio.agnosticfront.thefij:8443/nomad/sabnzbd"
2023-02-27 19:43:07 +00:00
passphrase = env("BACKUP_PASSPHRASE")
options {
InsecureTls = true
}
2023-02-27 19:43:07 +00:00
}
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
}
}