summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-11-16 11:37:54 -0200
committerSilvio Rhatto <rhatto@riseup.net>2016-11-16 11:37:54 -0200
commitd962ce2c96e801578eaecd4ceb28b780284a3d69 (patch)
treefaf80b272446fddaaa3f362f590a0071dc2c02dc /manifests/init.pp
parentb8f48c6b9b6727b03b29d829dce7af24eb5ff044 (diff)
downloadpuppet-certbot-d962ce2c96e801578eaecd4ceb28b780284a3d69.tar.gz
puppet-certbot-d962ce2c96e801578eaecd4ceb28b780284a3d69.tar.bz2
Adds non-interactive flag
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index d8b6ccd..bd75c51 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -37,7 +37,7 @@ class certbot(
# Chosing an arbitrary minite within the hour in the hope that won't overload Let's Encrypt servers
cron { 'certbot-renew':
- command => "${script_base}/${tool} renew --standalone --quiet ${real_pre_hook} ${real_post_hook}",
+ command => "${script_base}/${tool} renew --standalone --quiet -n ${real_pre_hook} ${real_post_hook}",
user => 'root',
hour => [ 5, 23 ],
minute => "28",