summaryrefslogtreecommitdiff
path: root/manifests/host.pp
AgeCommit message (Collapse)Author
2017-01-12Use $name for backwards compatibilityMarknl
2017-01-11Brought $name back into the game for backw. compatMarknl
2017-01-10Added $host optionMarknl
Current rule.pp converts the $name into the "HOST" parameter in the file, this can result in these definitions: ```shorewall::host { 'eth0:$VPN_HOSTS': zone => 'vpn', options => 'ipsec', order => 200; }``` I suggest moving the variable usage from the $name into a $host parameter, so above example becomes: ```shorewall::host { 'vpn-hosts': zone => 'vpn', host => 'eth0:$VPN_HOSTS', options => 'ipsec', order => 200; }```
2011-08-04refactor things to use the concat moduleMarcel Haerry
2009-12-07factored everything out in its own fileMarcel Haerry