27 lines
437 B
HCL
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
|
||
|
}
|
||
|
}
|