Files
mgmt/examples/lang/sendrecv3.mcl
James Shubin 90fa83a5cf lang: funcs: core: Move world API functions
Some of the core functions interact with the remote "world" API. Move
them all into the same package.
2019-02-07 12:32:32 -05:00

25 lines
439 B
Plaintext

import "fmt"
import "world"
$ns = "estate"
$exchanged = world.kvlookup($ns)
$state = maplookup($exchanged, $hostname, "default")
exec "exec0" {
cmd => "echo hello world && echo goodbye world 1>&2", # to stdout && stderr
shell => "/bin/bash",
}
kv "kv0" {
key => $ns,
#value => "two",
}
Exec["exec0"].output -> Kv["kv0"].value
if $state != "default" {
file "/tmp/mgmt/state" {
content => fmt.printf("state: %s\n", $state),
}
}