Skip to content

Commit

Permalink
Improve ocsp script: continue on error
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdriel committed Oct 29, 2023
1 parent 0f43098 commit 41b7e09
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 41b7e09

Please sign in to comment.