Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 87399 Details for
Bug 108567
new ebuild: mail-filter/rabl_server mail-filter/rabl_client
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
mail-filter/rabl_server/files/initd
initd (text/plain), 1.20 KB, created by
steveb
on 2006-05-24 07:20:29 UTC
(
hide
)
Description:
mail-filter/rabl_server/files/initd
Filename:
MIME Type:
Creator:
steveb
Created:
2006-05-24 07:20:29 UTC
Size:
1.20 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2006 Gentoo Technologies, Inc. ># Distributed under the terms of the GNU General Public License, v2 or later > >opts="${opts} reload" > >depend() { > need net >} > >checkconfig() { > if [ -z "${RABL_CONF}" ] ; then > eerror "Please edit /etc/conf.d/rabl_server" > eerror "I need to know what configuration to use!" > return 1 > fi > if [ -z "${RABL_OPTS}" ] ; then > eerror "Please edit /etc/conf.d/rabl_server" > eerror "I need to know what options to use!" > return 1 > fi > if [ ! -e ${RABL_CONF} ]; then > eerror "Unable to locate ${RABL_CONF}" > return 1 > fi > return 0 >} > >start() { > checkconfig || return $? > > ebegin "Starting RABL" > start-stop-daemon --start --quiet \ > --pidfile /var/run/rabl_server.pid \ > --make-pidfile --background \ > --exec /usr/bin/rabl_server -- ${RABL_OPTS} > eend $? >} > >stop() { > ebegin "Stopping RABL" > start-stop-daemon --stop --pidfile /var/run/rabl_server.pid > eend $? >} > >reload() { > ebegin "Reloading RABL" > if [ -e /var/run/rabl_server.pid ]; then > kill -HUP `cat /var/run/rabl_server.pid` > else > kill -HUP `pgrep rabl_server` > fi > eend $? "Failed to reload RABL" >} > >restart() { > ebegin "Restarting RABL" > svc_stop > svc_start > eend $? "Failed to Restart RABL" >}
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 108567
:
70198
|
70199
|
70200
|
70201
|
87397
|
87398
| 87399 |
87400
|
87401
|
87402
|
87403
|
87404