1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-15 03:51:51 +00:00
openmptcprouter-feeds/omr-schedule/files/bin/omr-schedule
Ycarus (Yannick Chabanois) 8e2e392041 Fix OMR-Schedule
2024-01-17 15:39:29 +01:00

14 lines
289 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