mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2026-05-03 16:10:40 +00:00
15b5542ad6
After building OpenResty, the script does cd /opt/openresty followed by rm -rf /opt/openresty, leaving $PWD pointing to a deleted directory. When pip runs in the certbot block, the subprocess inherits the invalid PWD and fails with OSError: No such file or directory. Add cd /root before the certbot block to reset to a valid directory. Closes #13240