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

@ -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