make sure links are followed so the certificates are installed correctly

This commit is contained in:
Fredrik Eriksson 2020-12-02 17:41:48 +01:00
parent caa0e47174
commit 3cb32b40a8
Signed by: feffe
GPG Key ID: 18524638BE25530A

View File

@ -82,6 +82,7 @@ define certbot::cert (
owner => $file_owner, owner => $file_owner,
group => $file_group, group => $file_group,
mode => $public_files_perm, mode => $public_files_perm,
links => 'follow',
require => Exec[ "certbot::cert::${title}" ]; require => Exec[ "certbot::cert::${title}" ];
} }
} }
@ -92,6 +93,7 @@ define certbot::cert (
owner => $file_owner, owner => $file_owner,
group => $file_group, group => $file_group,
mode => $public_files_perm, mode => $public_files_perm,
links => 'follow',
require => Exec[ "certbot::cert::${title}" ]; require => Exec[ "certbot::cert::${title}" ];
} }
} }
@ -102,6 +104,7 @@ define certbot::cert (
owner => $file_owner, owner => $file_owner,
group => $file_group, group => $file_group,
mode => $public_files_perm, mode => $public_files_perm,
links => 'follow',
require => Exec[ "certbot::cert::${title}" ]; require => Exec[ "certbot::cert::${title}" ];
} }
} }
@ -112,6 +115,7 @@ define certbot::cert (
owner => $file_owner, owner => $file_owner,
group => $file_group, group => $file_group,
mode => $private_files_perm, mode => $private_files_perm,
links => 'follow',
require => Exec[ "certbot::cert::${title}" ]; require => Exec[ "certbot::cert::${title}" ];
} }
} }