You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some *.example.com wildcard certificates which have been problematic when running through cert-shifter (I assume because of the leading asterisk).
I've worked around by placing
if echo $cert | grep -qe ^* ; then
#cert="\$cert"
continue
fi
in the for loop to stop the processing of the wildcard certs, but am wondering if there is a way to handle that would allow proper processing of those directories and files.
The text was updated successfully, but these errors were encountered:
Definitely not a fix.....that code change is just ignoring anything starting with an * (I don't currently need to use them). I'm wondering if you can suggest a way that I would be able to process the wildcard certificates properly.
I have some *.example.com wildcard certificates which have been problematic when running through cert-shifter (I assume because of the leading asterisk).
I've worked around by placing
if echo $cert | grep -qe ^* ; then
#cert="\$cert"
continue
fi
in the for loop to stop the processing of the wildcard certs, but am wondering if there is a way to handle that would allow proper processing of those directories and files.
The text was updated successfully, but these errors were encountered: