mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
9 lines
163 B
Bash
Executable File
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
|