Files
navidrome-litefs/nomad-config-check.nomad
sstent 41874f0ace
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 41s
feat: use internal wrapper for consul registration
2026-02-07 18:14:19 -08: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/"]
}
}
}
}