nopaque/web/nopaque-daemon.sh
2021-01-28 13:22:07 +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 1
done