42 lines
668 B
HCL
42 lines
668 B
HCL
job "nzbget" {
|
|
schedule = "@daily"
|
|
|
|
config {
|
|
repo = "s3://backups-minio.agnosticfront.thefij:8443/nomad/nzbget"
|
|
passphrase = env("BACKUP_PASSPHRASE")
|
|
|
|
options {
|
|
InsecureTls = true
|
|
}
|
|
}
|
|
|
|
backup {
|
|
paths = [
|
|
# Configuration
|
|
"/data/nas-container/nzbget",
|
|
# Queued nzb files
|
|
"/data/media-write/Downloads/nzb",
|
|
]
|
|
|
|
backup_opts {
|
|
Host = "nomad"
|
|
}
|
|
|
|
restore_opts {
|
|
Host = ["nomad"]
|
|
# Because path is absolute
|
|
Target = "/"
|
|
}
|
|
}
|
|
|
|
forget {
|
|
KeepLast = 2
|
|
KeepHourly = 24
|
|
KeepDaily = 30
|
|
KeepWeekly = 8
|
|
KeepMonthly = 6
|
|
KeepYearly = 2
|
|
Prune = true
|
|
}
|
|
}
|