summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp
blob: 536dd8dbde3180fd5de699c71db8d43c1bbeb213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class site_couchdb::apache_ssl_proxy {

# This is here to disable the previously configured apache ssl proxy
# we were using this, but have switched to stunnel instead.
#
# Unfortunately, the current apache shared module doesn't handle
# ensure=>absent, so this is going to be done the crude way, and will only
# work for debian+derivitives, which is fine for now, but not good for the
# future

  package { 'apache2': ensure => absent }

}