Files
navidrome-litefs/host-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

27 lines
426 B
HCL

job "host-check" {
datacenters = ["dc1"]
type = "batch"
constraint {
attribute = "${attr.unique.hostname}"
value = "odroid7"
}
group "check" {
task "ss" {
driver = "raw_exec"
config {
command = "ss"
args = ["-tln"]
}
}
task "ufw" {
driver = "raw_exec"
config {
command = "ufw"
args = ["status"]
}
}
}
}