Fix certbot plugins install when using PUID/PGID

This commit is contained in:
Jamie Curnow 2023-05-10 14:39:08 +10:00
parent 0127dc7f03
commit 05307aa253
No known key found for this signature in database
GPG Key ID: FFBB624C43388E9E
2 changed files with 4 additions and 1 deletions

View File

@ -131,7 +131,7 @@ const setupCertbotPlugins = () => {
});
if (plugins.length) {
const install_cmd = '. /opt/certbot/bin/activate && pip install --no-cache-dir --user ' + plugins.join(' ') + ' && deactivate';
const install_cmd = '. /opt/certbot/bin/activate && pip install --no-cache-dir ' + plugins.join(' ') + ' && deactivate';
promises.push(utils.exec(install_cmd));
}

View File

@ -22,3 +22,6 @@ chown -R "$PUID:$PGID" /var/log/nginx
chown -R "$PUID:$PGID" /etc/nginx/nginx
chown -R "$PUID:$PGID" /etc/nginx/nginx.conf
chown -R "$PUID:$PGID" /etc/nginx/conf.d
# Prevents errors when installing python certbot plugins when non-root
chown -R "$PUID:$PGID" /opt/certbot