fixed a logical error with the handling of DISABLE_NEXTCLOUD env variable

This commit is contained in:
dkoao 2019-09-26 03:35:25 +00:00
parent 9e2fd98848
commit a02657e99c
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ cat > $RCM_CONFIG <<EOF;
\$config['des_key'] = '$SECRET_KEY';
EOF
if [ "${DISABLE_NEXTCLOUD}" != "1" ]; then
if [ "${DISABLE_NEXTCLOUD}" == "1" ]; then
cat >> $RCM_CONFIG <<EOF;
\$config['plugins'] = array('html5_notifier', 'archive', 'zipdownload', 'password', 'managesieve', 'jqueryui', 'persistent_login');
\$config['skin'] = 'larry';