From: Silvio Rhatto Date: Sat, 23 May 2015 14:41:35 +0000 (-0300) Subject: Remove nginx::cert, ssl module does the job X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=82330a79dff899bd3a4a1efd8f686da2fcdaf3d6;p=puppet-nginx.git Remove nginx::cert, ssl module does the job --- diff --git a/manifests/cert.pp b/manifests/cert.pp deleted file mode 100644 index 28906f0..0000000 --- a/manifests/cert.pp +++ /dev/null @@ -1,18 +0,0 @@ -define nginx::cert() -{ - ssl::cert { "$name": - main => true, - notify => Service['nginx'], - } - - ssl::check { "$name": - file => true, - } - - Service["nginx"] { - require => [ Package["nginx"], - File["/etc/nginx/sites-enabled/${name}"], - File["/etc/ssl/private/${name}.pem"], - File["/etc/ssl/certs/${name}.crt"] ], - } -}