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
function install_link ()
{
LATEST=$(ls -td1 ${LIVEDIR}/* | head -n1)
...
if I manualy exec in container shell
ls -td1 /etc/letsencrypt/live/*
I get:
/etc/letsencrypt/live/README
/etc/letsencrypt/live/mydomain
README - is file and symlink follow to readme, not in folder with fullchain.pem
Solution for me:
LATEST=$(ls -td1 --group-directories-first ${LIVEDIR}/* | head -n1)
The text was updated successfully, but these errors were encountered:
Look:
certbot.sh
if I manualy exec in container shell
ls -td1 /etc/letsencrypt/live/*
I get:
/etc/letsencrypt/live/README
/etc/letsencrypt/live/mydomain
README - is file and symlink follow to readme, not in folder with fullchain.pem
Solution for me:
LATEST=$(ls -td1 --group-directories-first ${LIVEDIR}/* | head -n1)
The text was updated successfully, but these errors were encountered: