1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-24 23:04:19 +00:00
openmptcprouter-feeds/omr-schedule/files/bin/omr-schedule
2024-01-16 12:48:14 +01:00

14 lines
288 B
Bash
Executable file

#!/bin/sh
. /lib/functions.sh
. /lib/functions/network.sh
[ -n "$(pgrep -f 'omr-schedule')" ] && exit 0
for schedule_bin in /usr/share/omr/schedule.d/*; do
[ -x "$schedule_bin" ] && (
_log() {
logger -t "omr-schedule-${schedule_bin##*/}" "$*"
}
. "$schedule_bin" 2>&1
)
done