Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 96349 Details for
Bug 146763
dev-dotnet/xsp-1.1.17.1 (new ebuild)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
files/mod-mono-server.initd
mod-mono-server.initd (text/plain), 1.54 KB, created by
MT
on 2006-09-07 17:09:42 UTC
(
hide
)
Description:
files/mod-mono-server.initd
Filename:
MIME Type:
Creator:
MT
Created:
2006-09-07 17:09:42 UTC
Size:
1.54 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2005 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >depend() { > use net > after dotnet >} > >start() { > [ -z "$MonoServerRootDir" ] && \ > MonoServerRootDir="/usr/share/doc/xsp/test" > [ -z "$MonoApplications" ] && \ > MonoApplications="/mono:/usr/share/doc/xsp/test,/:." > [ -z "$UnixSocketFileName" ] && \ > UnixSocketFileName="/tmp/mod_mono_server" > [ -z "$MonoServerAddress" ] && \ > MonoServerAddress=127.0.0.1 > [ -z "$MonoServerPort" ] && \ > MonoServerPort=8080 > > MONO_SERVER_OPTS="--root ${MonoServerRootDir} \ >--applications ${MonoApplications} --nonstop" > > [ -n "$MonoApplicationsConfigDir" ] && \ > MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ >--appconfigdir ${MonoApplicationsConfigDir}" > > case "$MonoServerChannel" in > "tcp" ) > MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ >--address ${MonoServerAddress} --port ${MonoServerPort}" > ;; > > "unix" ) > [ -f "$UnixSocketFileName" ] && rm -f $UnixSocketFileName > MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \ >--filename ${UnixSocketFileName}" > ;; > > * ) > eerror "Please set a valid value for MonoServerChannel" > return 1 > ;; > esac > > export MONO_SHARED_DIR=/tmp > > ebegin "Starting mod-mono-server" > > start-stop-daemon --quiet --start \ > --background \ > --make-pidfile \ > --pidfile /var/run/aspnet/mod-mono-server.pid \ > --chuid apache \ > --exec /usr/bin/mod-mono-server \ > -- $MONO_SERVER_OPTS > > eend $? >} > >stop() { > ebegin "Stopping mod-mono-server" > > start-stop-daemon -o --quiet --stop \ > --pidfile /var/run/aspnet/mod-mono-server.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 146763
:
96347
|
96348
| 96349 |
96350
|
96351