Files
TrickyStore/module/template/service.sh
2024-07-18 12:30:19 +08:00

15 lines
124 B
Bash

DEBUG=@DEBUG@
MODDIR=${0%/*}
cd $MODDIR
(
while [ true ]; do
./daemon
if [ $? -ne 0 ]; then
exit 1
fi
done
) &