/var/lib/pcp/testsuite/archives/mk.schizo is in pcp-testsuite 4.0.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #!/bin/sh
#
# Create archives for Version A and Version B of the schizo PMDA
#
tmp=/var/tmp/$$
trap "rm -f $tmp.*; exit 0" 0 1 2 3 15
rm -f schizo-A* schizo-B*
cd ../pmdas/schizo
for version in A B
do
cat <<End-of-File | sudo ./Install
$version
End-of-File
cat <<End-of-File | pmlogger -l $tmp.log -t 2sec -s 4 -r ../../archives/schizo-$version
log mandatory on default {
schizo
sample.bin["bin-300"]
sample.long.hundred
sample.ulonglong.hundred
}
End-of-File
echo "Version $version log ..."
cat $tmp.log
done
sudo ./Remove
|