Skip to content

Commit

Permalink
Merge pull request #149 from mvdriel/improve-ocsp-script-continue-on-…
Browse files Browse the repository at this point in the history
…error

Improve ocsp script: continue on error
  • Loading branch information
tersmitten authored Oct 30, 2023
2 parents 2b980a7 + 41b7e09 commit cb5ed85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/usr/local/bin/haproxy-letsencrypt-ocsp-deploy.j2
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ for path in $(ls -1d {{ haproxy_letsencrypt_ssl_src_path }}/*/); do
-issuer "${path}{{ haproxy_letsencrypt_ssl_chain_name }}" \
-verify_other "${path}{{ haproxy_letsencrypt_ssl_chain_name }}" \
-cert "${path}{{ haproxy_letsencrypt_ssl_cert_name }}" \
-url "${ocspUrl}";
-url "${ocspUrl}" || true;

chown --reference="{{ haproxy_global_crt_base }}" "{{ haproxy_global_crt_base }}/${prefix}-${cert}.pem.ocsp";
chmod --reference="{{ haproxy_global_crt_base }}" "{{ haproxy_global_crt_base }}/${prefix}-${cert}.pem.ocsp";
Expand Down

0 comments on commit cb5ed85

Please sign in to comment.