I don't think this template function should be in any way authoritative, so let's namespace it.
12 lines
465 B
Plaintext
12 lines
465 B
Plaintext
import "datetime"
|
|
import "golang"
|
|
|
|
$dt = datetime.now()
|
|
|
|
$hystvalues = {"ix0" => $dt, "ix1" => history($dt, 1), "ix2" => history($dt, 2), "ix3" => history($dt, 3),}
|
|
|
|
file "/tmp/mgmt/history" {
|
|
state => $const.res.file.state.exists,
|
|
content => golang.template("Index(0) {{.ix0}}: {{ datetime_print .ix0 }}\nIndex(1) {{.ix1}}: {{ datetime_print .ix1 }}\nIndex(2) {{.ix2}}: {{ datetime_print .ix2 }}\nIndex(3) {{.ix3}}: {{ datetime_print .ix3 }}\n", $hystvalues),
|
|
}
|