module-tinc/manifests/init.pp
2010-08-31 17:54:24 +02:00

11 lines
192 B
Puppet

# manifests/init.pp - module to manage tinc-vpn
class tinc {
case $operatingsystem {
default: { include tinc::base }
}
if $use_shorewall {
include shorewall::rules::tinc
}
}