module-tinc/manifests/init.pp

12 lines
192 B
ObjectPascal
Raw Normal View History

2010-07-22 17:00:51 +02:00
# manifests/init.pp - module to manage tinc-vpn
2010-08-31 17:54:24 +02:00
class tinc {
case $operatingsystem {
default: { include tinc::base }
}
if $use_shorewall {
include shorewall::rules::tinc
}
}