jobs - fix jobs when MULTISITE=yes

This commit is contained in:
bunkerity 2021-06-14 09:02:16 +02:00
parent 29dc64ca30
commit ab9f9e0a4c
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
2 changed files with 3 additions and 4 deletions

View File

@ -60,7 +60,7 @@ if [ "$files" != " " ] ; then
fi fi
certbot_outpout=$(/opt/scripts/certbot-new.sh "$(echo -n $SERVER_NAME | sed 's/ /,/g')" "$EMAIL_LETS_ENCRYPT" 2>&1) certbot_outpout=$(/opt/scripts/certbot-new.sh "$(echo -n $SERVER_NAME | sed 's/ /,/g')" "$EMAIL_LETS_ENCRYPT" 2>&1)
if [ $? -eq 0 ] ; then if [ $? -eq 0 ] ; then
echo "[*] Certbot new successfully executed" echo "[*] Certbot new successfully executed for domain(s) $(echo -n $SERVER_NAME | sed 's/ /,/g')"
else else
echo "[*] Error while executing certbot new : $certbot_output" echo "[*] Error while executing certbot new : $certbot_output"
fi fi

View File

@ -28,7 +28,6 @@ function has_value() {
for file in $envs ; do for file in $envs ; do
if [ "$(grep "^${1}=${2}$" $file)" != "" ] ; then if [ "$(grep "^${1}=${2}$" $file)" != "" ] ; then
echo "$file" echo "$file"
return 0
fi fi
done done
} }