diff --git a/nomad-job/batch-rutorrent.nomad b/nomad-job/batch-rutorrent.nomad new file mode 100644 index 0000000..7c25696 --- /dev/null +++ b/nomad-job/batch-rutorrent.nomad @@ -0,0 +1,31 @@ +job "batch-rutorrent" { + datacenters = ["hetzner"] + priority=50 + type="batch" + meta { + forcedeploy="0" + } + periodic { + crons = ["0 0 * * *"] + prohibit_overlap = true + } + group "batch-rutorrent" { + task "cleanForwardFolder" { + driver= "docker" + config { + image = "alpine" + volumes = [ + "/mnt/hetzner/storagebox/file/forward:/file" + ] + command = "find" + args = [ + "/file", + "-empty", + "-type", + "d", + "-delete" + ] + } + } + } +}