#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { use net pgreplicate-8.0 pgcluster-8.0 } start() { ebegin "Starting PGCluster Load Balance" su - $PGUSER -c "/usr/lib/pgcluster-8.0/bin/pglb -D /etc/pgcluster-8.0" eend $? } stop() { ebegin "Stopping PGCluster Load Balance" su - $PGUSER -c "/usr/lib/pgcluster-8.0/bin/pglb -D /etc/pgcluster-8.0 stop" eend $? }