system/clusterresourceagents: Added (Resource Agents for HA-Linux)

This commit is contained in:
Zordrak 2010-04-18 01:04:03 -04:00 committed by David Somero
parent 906ac354a1
commit 947cf09994
5 changed files with 167 additions and 0 deletions

View file

@ -0,0 +1,12 @@
clusterresourceagents (OCF Resource Agents for HA-Linux)
OCF resource agents for use by compatible cluster managers (formerly
part of Heartbeat). Basically, just another core and required
component of the Linux-HA (i.e. heartbeat/pacemaker/openais/corosync)
software stack.
In order to have a functioning High Availability software stack,
before running this SlackBuild, build AND install, each in order,
the following other SlackBuilds.
Requires: libnet, libesmtp, clusterglue, available at SlackBuilds.org.

View file

@ -0,0 +1,93 @@
#!/bin/sh
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
# Copyright 2009 Eric Hameleers <alien@slackware.com>, Eindhoven, Netherlands
# Slackware build script for clusterglue
# Written by Zordrak <sbo@tpa.me.uk>
# Based on http://slackbuilds.org/template.SlackBuild
# Modified by the SlackBuilds.org project
PRGNAM=clusterresourceagents
VERSION=${VERSION:-000dd8956ad7}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$VERSION.tar.bz2
mv Cluster-Resource-Agents-$VERSION clusterresourceagents-$VERSION
cd $PRGNAM-$VERSION
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
./autogen.sh
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--build=$ARCH-slackware-linux \
--with-initdir=/etc/rc.d \
--enable-libnet \
--disable-fatal-warnings
make
make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
AUTHORS COPYING ChangeLog README INSTALL NEWS \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mv $PKG/etc/logrotate.d/ldirectord $PKG/etc/logrotate.d/ldirectord.new
mv $PKG/etc/rc.d/ldirectord $PKG/etc/rc.d/rc.ldirectord.new
mv $PKG/etc/ha.d/shellfuncs $PKG/etc/ha.d/shellfuncs.new
chmod +x $PKG/etc/rc.d/rc.ldirectord.new
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -0,0 +1,10 @@
PRGNAM="clusterresourceagents"
VERSION="000dd8956ad7"
HOMEPAGE="http://clusterlabs.org"
DOWNLOAD="http://hg.linux-ha.org/agents/archive/000dd8956ad7.tar.bz2"
MD5SUM="cebae25a50279fda90bad7a7501280dd"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Zordrak"
EMAIL="slackbuilds@tpa.me.uk"
APPROVED="dsomero"

View file

@ -0,0 +1,32 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
rm $NEW
fi
}
if [ -e etc/rc.d/rc.ldirectord ]; then
cp -a etc/rc.d/rc.ldirectord etc/rc.d/rc.ldirectord.new.incoming
cat etc/rc.d/rc.ldirectord.new > etc/rc.d/rc.ldirectord.new.incoming
mv etc/rc.d/rc.ldirectord.new.incoming etc/rc.d/rc.ldirectord.new
fi
if [ -e etc/logrotate.d/ldirectord ]; then
cp -a etc/logrotate.d/ldirectord etc/logrotate.d/ldirectord.new.incoming
cat etc/logrotate.d/ldirectord.new > etc/logrotate.d/ldirectord.new.incoming
mv etc/logrotate.d/ldirectord.new.incoming etc/logrotate.d/ldirectord.new
fi
if [ -e etc/ha.d/shellfuncs ]; then
cp -a etc/ha.d/shellfuncs etc/ha.d/shellfuncs.new.incoming
cat etc/ha.d/shellfuncs.new > etc/ha.d/shellfuncs.new.incoming
mv etc/ha.d/shellfuncs.new.incoming etc/ha.d/shellfuncs.new
fi
config etc/rc.d/rc.ldirectord.new
config etc/logrotate.d/ldirectord.new
config etc/ha.d/shellfuncs.new

View file

@ -0,0 +1,20 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
clusterresourceagents: clusterresourceagents (OCF Resource Agents for HA-Linux)
clusterresourceagents:
clusterresourceagents: OCF resource agents for use by compatible cluster managers (formerly
clusterresourceagents: part of Heartbeat). Basically, just another core and required
clusterresourceagents: component of the Linux-HA (i.e. heartbeat/pacemaker/openais/corosync)
clusterresourceagents: software stack.
clusterresourceagents:
clusterresourceagents: This is the second package in the dependency tree.
clusterresourceagents: Install clusterglue first.
clusterresourceagents:
clusterresourceagents: Homepage: http://clusterlabs.org