Skip to content

Commit

Permalink
update inc/nginx_addvhost.inc for acmetool.sh fix in 123.09beta01
Browse files Browse the repository at this point in the history
wrong variable check for led, lelive and lelived modes
  • Loading branch information
centminmod committed Sep 2, 2016
1 parent 6ec2ac1 commit 0847571
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/nginx_addvhost.inc
Expand Up @@ -666,7 +666,7 @@ if [[ "$LETSENCRYPT_DETECT" = [yY] ]]; then
"${SCRIPT_DIR}/addons/acmetool.sh" issue "$vhostname"
cecho "-------------------------------------------------------------" $boldyellow
echo
elif [ -f "${SCRIPT_DIR}/addons/acmetool.sh" ] && [[ "$sslconfig" = 'led' ]]; then
elif [ -f "${SCRIPT_DIR}/addons/acmetool.sh" ] && [[ "$vhostssl" = 'led' ]]; then
echo
cecho "-------------------------------------------------------------" $boldyellow
echo "ok: ${SCRIPT_DIR}/addons/acmetool.sh"
Expand All @@ -675,7 +675,7 @@ if [[ "$LETSENCRYPT_DETECT" = [yY] ]]; then
"${SCRIPT_DIR}/addons/acmetool.sh" issue "$vhostname" d
cecho "-------------------------------------------------------------" $boldyellow
echo
elif [ -f "${SCRIPT_DIR}/addons/acmetool.sh" ] && [[ "$sslconfig" = 'lelive' ]]; then
elif [ -f "${SCRIPT_DIR}/addons/acmetool.sh" ] && [[ "$vhostssl" = 'lelive' ]]; then
echo
cecho "-------------------------------------------------------------" $boldyellow
echo "ok: ${SCRIPT_DIR}/addons/acmetool.sh"
Expand All @@ -684,7 +684,7 @@ if [[ "$LETSENCRYPT_DETECT" = [yY] ]]; then
"${SCRIPT_DIR}/addons/acmetool.sh" issue "$vhostname" live
cecho "-------------------------------------------------------------" $boldyellow
echo
elif [ -f "${SCRIPT_DIR}/addons/acmetool.sh" ] && [[ "$sslconfig" = 'lelived' ]]; then
elif [ -f "${SCRIPT_DIR}/addons/acmetool.sh" ] && [[ "$vhostssl" = 'lelived' ]]; then
echo
cecho "-------------------------------------------------------------" $boldyellow
echo "ok: ${SCRIPT_DIR}/addons/acmetool.sh"
Expand Down

0 comments on commit 0847571

Please sign in to comment.