From 4efe192db2021cf7ff2d6ef32c3a251ed9c90bbd Mon Sep 17 00:00:00 2001 From: Nikolaos Kakouros Date: Wed, 6 Sep 2017 20:42:03 +0200 Subject: [PATCH] Fixes certbot executable name --- defaults/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 58f9ef7..2d27b10 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -24,11 +24,11 @@ certbot_handle_certs: true certbot_register_email: user@example.com # The command to run to register with Let's Encrypt -certbot_register_command: certbot --non-interactive --agree-tos --email "{{ certbot_register_email }}" +certbot_register_command: "{{ certbot_script }} --non-interactive --agree-tos --email {{ certbot_register_email }}" # The domains to generate certs for certbot_domains: - 'example.com' # The command to run to generate the certificates -certbot_cert_command: certbot certonly --noninteractive --standalone +certbot_cert_command: "{{ certbot_script }} certonly --noninteractive --standalone"