lang: funcs: Add deploy package with readfile related functions

This adds a readfile function to actually access files from our deploy.
A fun side effect is that we can even access our own code! In general,
it's a good reminder that you should only run trusted code on your own
infrastructure. This also includes a fancy new test case.
This commit is contained in:
James Shubin
2019-07-23 01:28:10 -04:00
parent 066048f4de
commit ed4ee3b58e
24 changed files with 644 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ package core
import (
// import so the funcs register
_ "github.com/purpleidea/mgmt/lang/funcs/core/datetime"
_ "github.com/purpleidea/mgmt/lang/funcs/core/deploy"
_ "github.com/purpleidea/mgmt/lang/funcs/core/example"
_ "github.com/purpleidea/mgmt/lang/funcs/core/example/nested"
_ "github.com/purpleidea/mgmt/lang/funcs/core/fmt"