1
0
Fork 0
tuned/tests/unit/func_basic.sh
Jaroslav Škarvada cff78c537c tests: moved tests under directory 'tests'
Also renamed directories to be more consistent.

Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
2019-11-18 16:34:11 +01:00

12 lines
231 B
Bash
Executable file

#!/bin/bash
systemctl restart tuned
tuned-adm recommend
PROFILES=`tuned-adm list | sed -n '/^\-/ s/^- // p'`
for p in $PROFILES
do
tuned-adm profile "$p"
sleep 5
tuned-adm active
done
tuned-adm profile `tuned-adm recommend`