mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
5 lines
170 B
Text
5 lines
170 B
Text
|
#!/bin/sh
|
||
|
if [ ! -f /etc/crontabs/root ] || [ "$(cat /etc/crontabs/root | grep omr-schedule)" = "" ]; then
|
||
|
echo "*/5 * * * * /bin/omr-schedule" >> /etc/crontabs/root
|
||
|
fi
|