aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 3653c896b77af695284e22cab079e30c204847ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# manage a basic tor installation
class tor (
  $ensure_version = 'installed',
  $use_munin      = false
){

  include tor::base

  if $use_munin {
    include tor::munin
  }
}