homelab-nomad/backups/jobs/nzbget.hcl

38 lines
599 B
HCL
Raw Normal View History

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