mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
10 lines
193 B
Bash
Executable file
10 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|