1
0
Fork 0
tuned/profiles/realtime/script.sh
2023-02-19 15:23:12 +01:00

22 lines
275 B
Bash
Executable file

#!/bin/bash
. /usr/lib/tuned/functions
start() {
return 0
}
stop() {
return 0
}
verify() {
retval=0
if [ "$TUNED_isolated_cores" ]; then
tuna -c "$TUNED_isolated_cores" -P > /dev/null 2>&1
retval=$?
fi
return $retval
}
process $@