mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 19:11:51 +00:00
4 lines
168 B
Bash
Executable file
4 lines
168 B
Bash
Executable file
#!/bin/sh
|
|
if [ ! -f /etc/crontabs/root ] || [ "$(cat /etc/crontabs/root | grep omr-schedule)" = "" ]; then
|
|
echo "* * * * * /bin/omr-schedule" >> /etc/crontabs/root
|
|
fi
|