summaryrefslogtreecommitdiff
path: root/puppet/modules/site_tor/manifests/hidden_service.pp
blob: 87a7b69699bd36b7535e4a11113bbac6543cbab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This class simply makes sure a base tor is installed and configured
# It doesn't configure any specific hidden service functionality,
# instead that is configured in site_webapp::hidden_service and
# site_static::hidden_service.
#
# Those could be factored out to make them more generic.
class site_tor::hidden_service {
  tag 'leap_service'
  Class['site_config::default'] -> Class['site_tor::hidden_service']

  include site_config::default
  include site_tor
}