mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
6 lines
201 B
Bash
6 lines
201 B
Bash
#!/bin/sh
|
|
# description: Basic event tracing check
|
|
test -f available_events -a -f set_event -a -d events
|
|
# check scheduler events are available
|
|
grep -q sched available_events && exit_pass || exit_fail
|