/var/lib/pcp/testsuite/647 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | #! /bin/sh
# PCP QA Test No. 647
# Install/Remove for Memory Mapped Value PMDA
#
# Copyright (c) 2009 Aconex. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard filters
. ./common.product
. ./common.filter
. ./common.check
status=1
$sudo rm -f $tmp.* $seq.full
username=`id -u -n`
MMV_STATS_DIR="$PCP_TMP_DIR/mmv"
# for QA the default install for mmv PMDA is as a dso, not a daemon
echo dso >$tmp.input
_cleanup()
{
[ -d $MMV_STATS_DIR.$seq ] && _restore_config $MMV_STATS_DIR
# note: _restore_auto_restart pmcd done in _cleanup_pmda()
_cleanup_pmda mmv $tmp.input
}
_prepare_pmda mmv
trap "_cleanup; exit \$status" 0 1 2 3 15
_stop_auto_restart pmcd
_filter_mmv_values()
{
sed -e \
's/"eggs"\] value .*/"eggs"] value USEC/g'
}
# real QA test starts here
home="$PCP_PMDAS_DIR"
iam=mmv
cd "$home/$iam"
unset ROOT MAKEFLAGS
# move the MMV directory to restore contents later.
[ -d $MMV_STATS_DIR ] && _save_config $MMV_STATS_DIR
# start from a known starting point
$sudo ./Remove >/dev/null 2>&1
# create a directory we can write and pcp group can read
$sudo rm -rf "$MMV_STATS_DIR"
$sudo mkdir -m 755 "$MMV_STATS_DIR"
$sudo chown $username "$MMV_STATS_DIR"
$sudo chgrp pcp "$MMV_STATS_DIR"
echo
echo "=== $iam agent installation ==="
$sudo ./Install </dev/null >$tmp.out 2>&1
_filter_pmda_install <$tmp.out
$here/src/mmv_genstats
echo
echo "=== validate values ==="
if pminfo $iam | LC_COLLATE=POSIX sort >$tmp.names
then
for name in `cat $tmp.names`
do
pminfo -fdmtT $name | _filter_mmv_values
done
else
echo "... failed! ... here is the Install log ..."
cat $tmp.out
fi
$here/src/mmv_noinit
echo
echo "=== validate metrics ==="
if pminfo $iam | LC_COLLATE=POSIX sort >$tmp.names
then
for name in `cat $tmp.names`
do
pminfo -fdmtT $name
done
else
echo "... failed! ... here is the Install log ..."
cat $tmp.out
fi
echo
echo "=== remove $iam agent ==="
$sudo ./Remove >$tmp.out 2>&1
_filter_pmda_remove <$tmp.out
echo
echo "=== $iam agent re-installation ===" | tee -a $here/$seq.full
$sudo ./Install <$tmp.input >$tmp.out 2>&1
cat $tmp.out >>$here/$seq.full
_filter_pmda_install <$tmp.out
status=0
exit
|