Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 377516 Details for
Bug 511116
app-admin/beaver - python log shipper for logstash
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
beaver.initd
beaver.initd (text/plain), 571 bytes, created by
Tomáš Mózes
on 2014-05-23 15:16:07 UTC
(
hide
)
Description:
beaver.initd
Filename:
MIME Type:
Creator:
Tomáš Mózes
Created:
2014-05-23 15:16:07 UTC
Size:
571 bytes
patch
obsolete
>#!/sbin/runscript > >BEAVER="/usr/bin/beaver" >CONFIGFILE="/etc/beaver/beaver.conf" >PIDFILE="/run/beaver.pid" > >depend() { > use net >} > >start() { > ebegin "Starting ${SVCNAME}" > > if [ ! -f ${CONFIGFILE} ]; then > eerror "Please configure beaver with ${CONFIGFILE}" > exit 1 > fi > > start-stop-daemon --start \ > --pidfile="${PIDFILE}" \ > --exec ${BEAVER} -- -D -c ${CONFIGFILE} -P ${PIDFILE} > > sleep 1 > local retval=1 > if [ -f $PIDFILE ]; then > retval=0 > fi > eend $retval >} > >stop() { > ebegin "Stopping ${SVCNAME}" > > start-stop-daemon --stop \ > --pidfile=${PIDFILE} > 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 511116
: 377516 |
377518
|
377520
|
377522