From aac9479636efeeb390a88132cc7748f678a95169 Mon Sep 17 00:00:00 2001 From: Fredrik Eriksson Date: Wed, 2 Dec 2020 20:43:10 +0100 Subject: [PATCH] fixed path to loopia scripts --- manifests/cert.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/cert.pp b/manifests/cert.pp index 18b5f02..3c13344 100644 --- a/manifests/cert.pp +++ b/manifests/cert.pp @@ -52,12 +52,12 @@ define certbot::cert ( } $exec_auth_hook = $auth_hook ? { - 'loopia' => "--manual-auth-hook ${certbot::cert::bin_dir}/acme-auth-loopia.py", + 'loopia' => "--manual-auth-hook ${certbot::params::bin_dir}/acme-auth-loopia.py", undef => '', default => "--manual-auth-hook ${auth_hook}", } $exec_clean_hook = $auth_hook ? { - 'loopia' => "--manual-auth-hook ${certbot::cert::bin_dir}/acme-cleanup-loopia.py", + 'loopia' => "--manual-auth-hook ${certbot::params::bin_dir}/acme-cleanup-loopia.py", undef => '', default => "--manual-auth-hook ${auth_hook}", }