Change default value of NOPAQUE_DAEMON_ENABLED from False to True

This commit is contained in:
Patrick Jentsch 2020-11-19 15:20:18 +01:00
parent ab5db4ae83
commit b786bbdfb1
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ NOPAQUE_ADMIN=
# NOPAQUE_DATA_DIR=
# CHOOSE ONE: False, True
# DEFAULT: False
# DEFAULT: True
# NOPAQUE_DAEMON_ENABLED=
# The hostname or IP address for the server to listen on.

View File

@ -2,7 +2,7 @@
source venv/bin/activate
if [[ "${NOPAQUE_DAEMON_ENABLED}" == "True" ]]; then
if [[ "${NOPAQUE_DAEMON_ENABLED:-True}" == "True" ]]; then
echo "INFO Starting nopaque daemon process..."
./nopaque-daemon.sh &
fi