diff options
author | irregulator <irregulator@riseup.net> | 2014-05-20 23:20:58 +0300 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-07-01 16:05:40 -0700 |
commit | 54fcafe131c411a49e4277cd0d14c6ea20044203 (patch) | |
tree | 9c1dfd9a8d789415d12190922646646486b40f42 /puppet/manifests | |
parent | 82dbbf823d6637082f63e55ed1d2f57a11e0d481 (diff) |
Initial commit for obfsproxy server feature in platform
Diffstat (limited to 'puppet/manifests')
-rw-r--r-- | puppet/manifests/site.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/puppet/manifests/site.pp b/puppet/manifests/site.pp index 9afa5dfd..8e00fbbd 100644 --- a/puppet/manifests/site.pp +++ b/puppet/manifests/site.pp @@ -10,6 +10,7 @@ notice("Services for ${fqdn}: ${services_str}") if member($services, 'openvpn') { include site_openvpn + include site_obfsproxy } if member($services, 'couchdb') { @@ -42,4 +43,8 @@ if member($services, 'static') { include site_static } +if $services =~ /\bobfsproxy\b/ { + include site_obfsproxy +} + include site_config::packages::uninstall |