summaryrefslogtreecommitdiffstats
path: root/modules/certbot
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-10 04:24:03 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-10 04:24:03 -0400
commite0d87ef93a4cc3ffb5675ead20012b7162b825f2 (patch)
tree098d2086b95eaab1bbb3a6fe4797ea2caf09261c /modules/certbot
parentaefa11df95e3dae76c8d845333fbfbfdaa602d95 (diff)
downloadpuppet-tozt-e0d87ef93a4cc3ffb5675ead20012b7162b825f2.tar.gz
puppet-tozt-e0d87ef93a4cc3ffb5675ead20012b7162b825f2.zip
need to run certbot noninteractively
Diffstat (limited to 'modules/certbot')
-rw-r--r--modules/certbot/manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/certbot/manifests/init.pp b/modules/certbot/manifests/init.pp
index 40f061c..98f7c41 100644
--- a/modules/certbot/manifests/init.pp
+++ b/modules/certbot/manifests/init.pp
@@ -31,7 +31,7 @@ class certbot {
exec { "initial certbot run":
# XXX update to real domain name
- command => "/usr/bin/certbot --nginx -d new.tozt.net",
+ command => "/usr/bin/certbot -n --nginx -d new.tozt.net",
creates => "/etc/letsencrypt/live",
require => [
Package["certbot"],