diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-16 14:50:55 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-16 14:50:55 -0300 |
commit | 3580b0ee72b210365de78a024c3bf280839cb420 (patch) | |
tree | 054e19b79255b04235817bef8971a015dbf85a3e /manifests | |
parent | 4dc88085101cf28ed8afba7cfd7fe5461ea64595 (diff) | |
download | puppet-nginx-3580b0ee72b210365de78a024c3bf280839cb420.tar.gz puppet-nginx-3580b0ee72b210365de78a024c3bf280839cb420.tar.bz2 |
Removes puppetmaster support
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/puppetmaster.pp | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/manifests/puppetmaster.pp b/manifests/puppetmaster.pp deleted file mode 100644 index a04007b..0000000 --- a/manifests/puppetmaster.pp +++ /dev/null @@ -1,59 +0,0 @@ -class nginx::puppetmaster inherits nginx::base { - - $worker_processes = hiera('puppet::master::worker_processes', 4) - $puppetmaster_certname = hiera('puppet::master::certname', "puppet.${::domain}") - - $worker_connections = 1024 - $ssl_port = 8140 - $non_ssl_port = 8141 - $puppetmaster_servers = [ "127.0.0.1:18140", - "127.0.0.1:18141", - "127.0.0.1:18142", - "127.0.0.1:18143" ] - - file { "/etc/nginx/conf.d/puppetmaster.conf": - content => template("nginx/puppetmaster.conf.erb"), - owner => "root", - group => "root", - mode => 0644, - ensure => present, - notify => Service["nginx"], - } - - nginx::base::site { "puppetmaster": - ensure => present, - source => 'template', - require => File['/etc/nginx/conf.d/puppetmaster.conf'], - } - - # We don't want nginx to listen at port 80 - nginx::base::site { "default": - source => 'none', - ensure => absent, - } - - File["/etc/nginx/nginx.conf"] { - content => template("nginx/nginx.conf.puppetmaster.erb"), - } -} - -class nginx::puppetmaster::disabled inherits nginx::puppetmaster { - File["/etc/nginx/nginx.conf", "/etc/nginx/conf.d/puppetmaster.conf", - "/etc/nginx", "/etc/nginx/sites-available", "/etc/nginx/sites-enabled"] { - ensure => absent, - force => true, - } - - Service['nginx'] { - enable => false, - ensure => stopped, - } - - Nginx::Base::Site['puppetmaster'] { - ensure => absent, - } - - Package['nginx'] { - ensure => absent, - } -} |