nopaque/web/nopaque-daemon.sh
2021-01-28 11:26:41 +01:00

9 lines
163 B
Bash
Executable File

#!/bin/bash
# The nopaque daemon is essentially just a loop in which the daemon tasks are
# periodically executed
while true; do
flask tasks
sleep 3
done