Files
NomadBackup/nomad_backup/nomad-config-check.hcl
2026-02-08 02:08:34 +00:00

21 lines
377 B
HCL

job "nomad-config-check" {
datacenters = ["dc1"]
type = "batch"
group "check" {
count = 1
constraint {
attribute = "${attr.unique.hostname}"
value = "odroid7"
}
task "config" {
driver = "raw_exec"
config {
command = "grep"
args = ["-r", "disable_script_checks", "/etc/nomad.d/"]
}
}
}
}