feat(templater): Added support for file include

Adds a 'fileContent' template function to insert the literal contents
of a file specified in the template.

Signed-off-by: Niklas Wik <niklas.wik@nokia.com>
This commit is contained in:
Niklas Wik 2018-01-09 15:12:50 +02:00 committed by Vincent Ambo
parent 850fdcf3e0
commit bafb792339
4 changed files with 30 additions and 2 deletions

View file

@ -193,6 +193,7 @@ func templateFuncs() template.FuncMap {
}
m["passLookup"] = GetFromPass
m["lookupIPAddr"] = GetIPsFromDNS
m["fileContent"] = GetFromFile
return m
}