trying to get the command right

This commit is contained in:
Mark 2022-04-09 08:11:43 +01:00
parent 9c5692d1e1
commit 9e743531fc
1 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,9 @@ apt install sudo socat curl coreutils
# Download & install.
curl -o "${ACME_SCRIPT_TMP}" "${ACME_SCRIPT_URL}"
sudo -s -u bash ${ACME_SCRIPT_TMP} --home ${ACME_HOME} --install
chmod +x ${ACME_SCRIPT_TMP}
sudo -s -u ${ACME_USER} ${ACME_SCRIPT_TMP} --home ${ACME_HOME} --install
}