fix Le_Webroot check

Go for other options if it is equal to "no", not if it merely
contains "no".
This commit is contained in:
defanor 2016-05-03 05:42:34 +03:00
parent 01f54558b9
commit fe2e209d1f

View File

@ -1057,7 +1057,7 @@ issue() {
Le_Keylength="" Le_Keylength=""
fi fi
if _contains "$Le_Webroot" "no" ; then if [ "$Le_Webroot" = "no" ] ; then
_info "Standalone mode." _info "Standalone mode."
if ! _exists "nc" ; then if ! _exists "nc" ; then
_err "Please install netcat(nc) tools first." _err "Please install netcat(nc) tools first."