nopaque/web/nopaque-daemon.sh

9 lines
163 B
Bash
Raw Normal View History

2020-11-13 14:01:53 +00:00
#!/bin/bash
# The nopaque daemon is essentially just a loop in which the daemon tasks are
# periodically executed
2020-11-13 14:01:53 +00:00
while true; do
flask tasks
sleep 1
2020-11-13 14:01:53 +00:00
done