blob: 0aadc3f8d2dac66e3e304697c411fa0a9877fc33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgcluster/files/pglb.init-1.3.0c,v 1.1 2005/05/10 06:40:37 nakano Exp $
depend() {
use net pgreplicate pgcluster
}
start() {
ebegin "Starting PGCluster Load Balance"
su - $PGUSER -c "/usr/bin/pglb -D /etc/pgcluster"
}
stop() {
ebegin "Stopping PGCluster Load Balance"
su - $PGUSER -c "/usr/bin/pglb -D /etc/pgcluster stop"
eend $?
}
|