From: Silvio Rhatto Date: Fri, 17 Jun 2016 12:28:51 +0000 (-0300) Subject: Fixes basedir on certonly command X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=1cca2ca13258a38330ad333e3543caf936cfbe1a;p=puppet-certbot.git Fixes basedir on certonly command --- diff --git a/manifests/manage.pp b/manifests/manage.pp index 6d694d9..ebcbbad 100644 --- a/manifests/manage.pp +++ b/manifests/manage.pp @@ -18,7 +18,7 @@ define certbot::manage( # Make sure nginx is restarted and request a certificate exec { "certbot-${name}": - command => "${real_pre_hook}/usr/bin/certbot certonly --webroot -w /var/www/certbot/${name} -d ${name} -d www.${name} -m ${email} --rsa-key-size ${size} --agree-tos", + command => "${real_pre_hook}/usr/bin/certbot certonly --webroot -w ${::certbot::basedir}/${name} -d ${name} -d www.${name} -m ${email} --rsa-key-size ${size} --agree-tos", creates => "/etc/letsencrypt/archive/${name}", require => File["${::certbot::basedir}/${name}"], }