Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 25659 Details for
Bug 41655
New ebuild (mod_mono-0.7.ebuild)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
mod-mono-server.init
mod-mono-server.init (text/plain), 1.00 KB, created by
Chris Laverty
on 2004-02-15 05:27:03 UTC
(
hide
)
Description:
mod-mono-server.init
Filename:
MIME Type:
Creator:
Chris Laverty
Created:
2004-02-15 05:27:03 UTC
Size:
1.00 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2003 Gentoo Technologies, Inc. ># Distributed under the terms of the GNU General Public License, v2 or later ># $Header: $ > >depend() { > need net apache2 dotnet >} > >start() { > ebegin "Starting mod-mono-server" > > # Make sure there is no stale socket > rm -f /tmp/mod_mono_server > > /sbin/start-stop-daemon --quiet --background \ > --start --startas /usr/bin/mod-mono-server.exe \ > --pidfile /var/run/mod-mono-server.pid --make-pidfile \ > -- \ > --root ${MONOROOT} --applications ${APPLICATIONS} --nonstop > ret=$? > > while : > do > cnt=$(($cnt + 1)) > if [ -S "/tmp/mod_mono_server" ]; then > chmod 666 /tmp/mod_mono_server > break > fi > > if [ $cnt -eq 30 ]; then > einfo "/tmp/mod_mono_server does not exist. You will need to 'chmod 666 /tmp/mod_mono_server' manually." > break > fi > sleep 1 > done > eend $ret >} > >stop () { > ebegin "Stopping mod-mono-server" > start-stop-daemon -o --quiet --stop --pidfile /var/run/mod-mono-server.pid > ret=$? > rm -f /var/run/mod-mono-server.pid > eend $ret >} >
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 41655
:
25657
|
25658
|
25659
|
25660
|
26106
|
29786
|
29787
|
29936
|
30651
|
30652
|
30979
|
31132
|
31447