diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-05-30 21:06:21 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-05-30 21:06:21 -0300 |
commit | 5f24e6a9f043039050279be63311621334e7eea1 (patch) | |
tree | ee9287db5591fb02b3d38d95a922cd6086e5c5df /manifests | |
parent | 42381cde353aaa3fd6ae60e5adec9aa6a906c069 (diff) | |
download | puppet-certbot-5f24e6a9f043039050279be63311621334e7eea1.tar.gz puppet-certbot-5f24e6a9f043039050279be63311621334e7eea1.tar.bz2 |
Minor style change
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 483511f..da579ba 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -48,7 +48,7 @@ class certbot( # Chosing an arbitrary minute within the hour in the hope that won't overload Let's Encrypt servers cron { 'certbot-renew': - command => "${real_pre_command}${script_base}/${tool} renew --${plugin} --quiet -n ${real_pre_hook} ${real_post_hook}${real_post_command}", + command => "${real_pre_command}${script_base}/${tool} renew --${plugin} --quiet -n ${real_pre_hook} ${real_post_hook} ${real_post_command}", user => 'root', hour => [ 5, 23 ], minute => "28", |