blob: 9d264ff84ee9f3eafe220e632e5a9edc41e6a018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
#
# Copyright (c) 1997-2002 Silicon Graphics, Inc. All Rights Reserved.
#
# Remove the broken PMDA
#
# source the PCP configuration environment variables
. $PCP_DIR/etc/pcp.env
# Get the common procedures and variable assignments
#
. $PCP_SHARE_DIR/lib/pmdaproc.sh
# The name of the PMDA
#
iam=broken
# Do it
#
_setup
_remove
exit 0
|