summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pcr/ganglia/PKGBUILD2
-rw-r--r--pcr/ganglia/ganglia.install16
2 files changed, 6 insertions, 12 deletions
diff --git a/pcr/ganglia/PKGBUILD b/pcr/ganglia/PKGBUILD
index 9a2cfae84..9fed072aa 100644
--- a/pcr/ganglia/PKGBUILD
+++ b/pcr/ganglia/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=ganglia
pkgver=3.6.0
-pkgrel=3
+pkgrel=4
pkgdesc='Scalable distributed monitoring system for high-performance computing systems such as clusters and Grids.'
arch=(
i686
diff --git a/pcr/ganglia/ganglia.install b/pcr/ganglia/ganglia.install
index 814a993bc..6a196af1f 100644
--- a/pcr/ganglia/ganglia.install
+++ b/pcr/ganglia/ganglia.install
@@ -1,14 +1,7 @@
-# arg 1: the new package version
post_install() {
- post_upgrade
-}
-
-# arg 1: the new package version
-# arg 2: the old package version
-post_upgrade() {
if [ "`vercmp $2 3.4.0`" -lt 0 ]; then
echo 'WARNING: The ganglia package has been split. If you use the' \
- 'web frontend, you'll need to install the ganglia-web package as well.'
+ "web frontend, you'll need to install the ganglia-web package as well."
fi
id ganglia >& /dev/null
if [ $? -ne 0 ]; then
@@ -20,11 +13,12 @@ post_upgrade() {
install -d -o ganglia -g ganglia /var/lib/ganglia && install -d -o ganglia -g ganglia /var/lib/ganglia/rrds
}
-# arg 1: the old package version
+post_upgrade() {
+ post_install
+}
+
post_remove() {
echo 'Removing ganglia system group and user...'
userdel ganglia
echo 'NOTE: Please remove /var/lib/ganglia manually if it is no longer required.'
}
-
-# vim:set ts=2 sw=2 et: