11 lines
192 B
Puppet
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
|
|
}
|
|
}
|