Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 166501 Details for
Bug 238755
net-im/tigase-server (new ebuild)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Init.d control script for Tigase XMPP server
init_d_tigase (text/plain), 1.08 KB, created by
Mads Randstoft
on 2008-09-26 11:36:00 UTC
(
hide
)
Description:
Init.d control script for Tigase XMPP server
Filename:
MIME Type:
Creator:
Mads Randstoft
Created:
2008-09-26 11:36:00 UTC
Size:
1.08 KB
patch
obsolete
>#!/sbin/runscript > >depend() { > need net > use dns logger >} > >checkconfig() { > if [ ! -e ${TIGASE_CONFIG} ] ; then > eerror "No config file!" > eerror "Stop the server and edit config file ${TIGASE_CONFIG} to your needs before running the service" > fi >} > >start() { > source /etc/conf.d/tigase > checkconfig > > ebegin "Starting Tigase" > > start-stop-daemon --user ${TIGASE_USER} --start --quiet --background --pidfile /var/run/tigase --make-pidfile --exec /usr/bin/java -- ${JAVA_OPTIONS} -classpath ${CLASSPATH} tigase.server.XMPPServer -c ${TIGASE_CONFIG} ${TIGASE_OPTIONS} > eend $? >} > >stop () { > ebegin "Stopping Tigase" > start-stop-daemon -u tigase --stop --quiet --pidfile /var/run/tigase > sleep 2 > eend $? >} > >svc_restart () { > source /etc/conf.d/tigase > > ebegin "Restarting Tigase" > > start-stop-daemon -u tigase --stop --quiet --pidfile /var/run/tigase > sleep 5 > start-stop-daemon --user ${TIGASE_USER} --start --quiet --background --pidfile /var/run/tigase --make-pidfile --exec /usr/bin/java -- ${JAVA_OPTIONS} -classpath ${CLASSPATH} tigase.server.XMPPServer -c ${TIGASE_CONFIG} ${TIGASE_OPTIONS} > 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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 238755
:
166493
|
166495
|
166497
|
166499
|
166500
| 166501