Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 184471 Details for
Bug 107484
net-misc/stunnel init script cannot stop stunnel process in chroot environment
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
fix init.d script
stunnel (text/plain), 838 bytes, created by
Boris HUISGEN
on 2009-03-09 16:22:02 UTC
(
hide
)
Description:
fix init.d script
Filename:
MIME Type:
Creator:
Boris HUISGEN
Created:
2009-03-09 16:22:02 UTC
Size:
838 bytes
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2007 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 > ># Default pidfile location >PIDFILE="/var/run/stunnel/stunnel.pid" > >checkconfig() { > # To ensure backwards compatibility > if grep -q /etc/stunnel/stunnel.pid /etc/stunnel/stunnel.conf; then > ewarn "Please update your stunnel.conf!" > ewarn "pid should point to /var/run/stunnel/stunnel.pid" > PIDFILE="/etc/stunnel/stunnel.pid" > fi >} > >depend() { > need net >} > >start() { > checkconfig > ebegin "Starting stunnel" > start-stop-daemon --start --quiet --pidfile "${PIDFILE}" \ > --exec /usr/bin/stunnel -- /etc/stunnel/stunnel.conf > eend $? >} > >stop() { > checkconfig > ebegin "Stopping stunnel" ># start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" ># fix HB > start-stop-daemon --stop --quiet --name stunnel > 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 107484
:
69395
| 184471