nopaque/web/nopaque-daemon.sh

9 lines
164 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 10
done