diff options
author | James Meyer <james.meyer@operamail.com> | 2011-12-07 19:45:02 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2011-12-07 19:45:02 (GMT) |
commit | 582455878ef98dfadc0618309686c85b135f7a23 (patch) | |
tree | a87b677b96c168524576cf32870487758d0b43ba /abs/core/xymon/xymon-client.install | |
parent | 65b2738ba8a6b80a17c5a2953a29be935b15d18c (diff) | |
download | linhes_pkgbuild-582455878ef98dfadc0618309686c85b135f7a23.zip linhes_pkgbuild-582455878ef98dfadc0618309686c85b135f7a23.tar.gz linhes_pkgbuild-582455878ef98dfadc0618309686c85b135f7a23.tar.bz2 |
xymon: first build, includes both server and client builds.
xymon is a system used to monitor various things about each host.
Possible to replace rrdtool and monitorx
Diffstat (limited to 'abs/core/xymon/xymon-client.install')
-rw-r--r-- | abs/core/xymon/xymon-client.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/core/xymon/xymon-client.install b/abs/core/xymon/xymon-client.install new file mode 100644 index 0000000..301fc1f --- /dev/null +++ b/abs/core/xymon/xymon-client.install @@ -0,0 +1,22 @@ +post_install() { + . /etc/systemconfig + sed -i -e "s/127.0.0.1/$dbhost/" /data/srv/xymon/client/etc/xymonclient.cfg + chown -R nobody /data/srv/xymon + +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + /bin/true +} + +pre_remove() { + /bin/true +} +op=$1 +shift +$op $* +# vim: ft=sh ts=2 |