about summary refs log tree commit diff
path: root/templater/dns.go
AgeCommit message (Collapse)AuthorFilesLines
2018-03-09 refactor: Remove old error handling libraryVincent Ambo1-11/+1
Removes the old error handling library and switches to plain fmt.Errorf calls. There are several reasons for this: * There are no useful types or handling here anyways, so output format is the only priority. * Users don't care about getting stacktraces. * My emotional wellbeing. Fin de siècle.
2017-11-21 feat(license): Relicense under GPLv3Vincent Ambo1-1/+12
All further kontemplate source code changes and releases will happen under the GPLv3. Previous releases are still available under the MIT license.
2017-10-20 feat templater: Add IP lookup functionStefan Magnus Landrø1-0/+34
This introduces support for looking up IP addresses using local DNS resolver. Function will return a list of all IP addresses associated with hostname. Further processing can be achieved using supported list template functions.