We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9d2643 commit 87dab91Copy full SHA for 87dab91
monitors/no-stdout/sar
@@ -7,8 +7,13 @@
7
. $LKP_SRC/lib/common.sh
8
. $LKP_SRC/lib/wait.sh
9
10
-sadc="/lkp/benchmarks/sysstat/usr/local/lib/sa/sadc"
11
-sadf="/lkp/benchmarks/sysstat/usr/local/bin/sadf"
+for sadc in /lkp/benchmarks/sysstat/usr/local/lib/sa/sadc /usr/lib/sysstat/sadc /usr/lib64/sa/sadc; do
+ [ -x $sadc ] && break
12
+done
13
+
14
+for sadf in /lkp/benchmarks/sysstat/usr/local/bin/sadf /usr/bin/sadf; do
15
+ [ -x $sadf ] && break
16
17
18
: "${activity:=ALL}"
19
: "${interval:=1}"
0 commit comments