From f856290e112081d07f0e3e61edc9d130962adfb0 Mon Sep 17 00:00:00 2001 From: Bob Belnap Date: Fri, 2 Mar 2018 10:28:15 -0500 Subject: [PATCH] add quotes to account_email in account.conf --- manifests/request.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/request.pp b/manifests/request.pp index 4b45b53..fea874d 100644 --- a/manifests/request.pp +++ b/manifests/request.pp @@ -68,7 +68,7 @@ END } -> file_line { ' add email to acme conf': path => "${home_dir}/.acme.sh/account.conf", - line => "ACCOUNT_EMAIL=${contact_email}", + line => "ACCOUNT_EMAIL='${contact_email}'", match => '^ACCOUNT_EMAIL=.*$', }