27 lines
426 B
HCL
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|