Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 180241 Details for
Bug 256894
Syslog-NG 3.0.1 version bump
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
slightly changed init.d script (-f is needed in check_configure)
syslog-ng.rc6-r1 (text/plain), 1.85 KB, created by
Oliver Schmidt
on 2009-01-30 08:17:39 UTC
(
hide
)
Description:
slightly changed init.d script (-f is needed in check_configure)
Filename:
MIME Type:
Creator:
Oliver Schmidt
Created:
2009-01-30 08:17:39 UTC
Size:
1.85 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2004 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/files/syslog-ng.rc6-r1,v 1.7 2007/11/04 08:02:28 mr_bones_ Exp $ > >opts="checkconfig reload" > >depend() { > # Make networking dependency conditional on configuration > case $(sed 's/#.*//' /etc/syslog-ng/syslog-ng.conf) in > *source*tcp*|*source*udp*|*destination*tcp*|*destination*udp*) > need net > use stunnel ;; > esac > > # kludge for baselayout-1 compatibility > [ -z "${svclib}" ] && config /etc/syslog-ng/syslog-ng.conf > need clock hostname localmount > provide logger >} > >checkconfig() { > if [ ! -e /etc/syslog-ng/syslog-ng.conf ] ; then > eerror "You need to create /etc/syslog-ng/syslog-ng.conf first." > eerror "An example can be found in /etc/syslog-ng/syslog-ng.conf.sample" > return 1 > fi > syslog-ng -s -f /etc/syslog-ng/syslog-ng.conf > > # the start and reload functions have their own eends so > # avoid calling this twice when there are no problems > [ $? -eq 0 ] || eend $? "Configuration error. Please fix your configfile (/etc/syslog-ng/syslog-ng.conf)" >} > >start() { > checkconfig || return 1 > ebegin "Starting syslog-ng" > [ -n "${SYSLOG_NG_OPTS}" ] && SYSLOG_NG_OPTS="-- ${SYSLOG_NG_OPTS}" > start-stop-daemon --start --quiet --exec /usr/sbin/syslog-ng ${SYSLOG_NG_OPTS} > eend $? "Failed to start syslog-ng" >} > >stop() { > ebegin "Stopping syslog-ng" > start-stop-daemon --stop --quiet --pidfile /var/run/syslog-ng.pid > eend $? "Failed to stop syslog-ng" > sleep 1 # needed for syslog-ng to stop in case we're restarting >} > >reload() { > if [ ! -f /var/run/syslog-ng.pid ]; then > eerror "syslog-ng isn't running" > return 1 > fi > checkconfig || return 1 > ebegin "Reloading configuration and re-opening log files" > start-stop-daemon --stop --oknodo --signal HUP \ > --pidfile /var/run/syslog-ng.pid > 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 256894
:
180234
|
180235
|
180237
|
180239
| 180241