Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 353306 Details for
Bug 476868
new ebuild for Galera Cluster for mariadb/mysql
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
init script for garbd
garbd.init (text/plain), 902 bytes, created by
Steve Yin
on 2013-07-15 03:14:41 UTC
(
hide
)
Description:
init script for garbd
Filename:
MIME Type:
Creator:
Steve Yin
Created:
2013-07-15 03:14:41 UTC
Size:
902 bytes
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2013 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >depend() { > need net >} > >PIDFILE=/var/run/garbd.pid >LOGFILE=$LOG_FILE >GARBD_BIN=/usr/sbin/garbd > >checkconfig() { > if [ -z "${GALERA_NODES}" ]; then > eerror "Galera nodes address must be defined." > return 1 > fi > > if [ -z "{$GALERA_GROUP}" ]; then > eerror "Galera group name must be defined." > return 1 > fi > > if [ -z "${LOG_FILE}" ]; then > LOGFILE=/var/log/garbd.log > fi >} > >start() { > checkconfig || return 1 > ebegin "Starting Galera Arbitrator daemon" > start-stop-daemon --start --exec $GARBD_BIN -- \ > --address "gcomm://${GALERA_NODES}" \ > --group "${GALERA_GROUP}" \ > --options "${GALERA_OPTIONS}" \ > --log "${LOGFILE}" \ > --daemon > eend $? >} > >stop() { > ebegin "Stopping Galera Arbitrator daemon" > start-stop-daemon --stop --exec $GARBD_BIN > eend $? >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 476868
:
353302
|
353304
| 353306