summaryrefslogtreecommitdiff
path: root/system/pcp/README.SLACKWARE
diff options
context:
space:
mode:
authordsomero <xgizzmo@gmail.com>2010-05-21 08:20:49 -0400
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-24 16:06:16 -0500
commitd6ba029966e2277cbcdc04e19108a77459e2722e (patch)
tree178121e18f411d7ed5cb2c65cd08a6080906bf4d /system/pcp/README.SLACKWARE
parenta1433c3c2dd36ff7fae78c5f6c86f3270fd794f5 (diff)
downloadslackbuilds-d6ba029966e2277cbcdc04e19108a77459e2722e.tar.gz
system/pcp: Removed (download link broken)
Diffstat (limited to 'system/pcp/README.SLACKWARE')
-rw-r--r--system/pcp/README.SLACKWARE52
1 files changed, 0 insertions, 52 deletions
diff --git a/system/pcp/README.SLACKWARE b/system/pcp/README.SLACKWARE
deleted file mode 100644
index 03f064c482..0000000000
--- a/system/pcp/README.SLACKWARE
+++ /dev/null
@@ -1,52 +0,0 @@
-The init scripts are not prefixed with "rc." (e.g. rc.pcp) due to the fact
-that several documentation files and other supporting files used by pcp
-expect them without that prefix, and the process of fixing those files is
-a bit too maintenance-intensive and error-prone to bother.
-
-/etc/rc.d/pcp:
- starts all the agents and daemons for collecting the info from
- various host monitoring
-
-/etc/rc.d/pmie:
- starts all daemons for evaluating the rules based on the exported
- PCP metrics (usually for triggering particular events)
-
-/etc/rc.d/pmproxy:
- starts proxy daemon for PCP
-
-You will need to add the following bits to /etc/rc.d/rc.local and make sure
-the relevant init scripts have executable permissions:
-
- # Start pcp:
- if [ -x /etc/rc.d/pcp ]; then
- /etc/rc.d/pcp start
- fi
-
- # Start pmie
- if [ -x /etc/rc.d/pmie ]; then
- /etc/rc.d/pmie start
- fi
-
- # Start pmproxy
- if [ -x /etc/rc.d/pmproxy ]; then
- /etc/rc.d/pmproxy start
- fi
-
-You will also need to add the following to /etc/rc.d/rc.local_shutdown:
-
- # Stop pcp:
- if [ -x /etc/rc.d/pcp ]; then
- /etc/rc.d/pcp stop
- fi
-
- # Stop pmie
- if [ -x /etc/rc.d/pmie ]; then
- /etc/rc.d/pmie stop
- fi
-
- # Stop pmproxy
- if [ -x /etc/rc.d/pmproxy ]; then
- /etc/rc.d/pmproxy stop
- fi
-
-