diff options
author | 2009-03-01 12:17:46 +0000 | |
---|---|---|
committer | 2009-03-01 12:17:46 +0000 | |
commit | 5d15e7f2538c786450d3727b3f0d893305b4ad85 (patch) | |
tree | ce318a7a2e747618a6f7f98a880c3dee038c26cb /net-im/mu-conference/files | |
parent | stable amd64, bug 260703 (diff) | |
download | historical-5d15e7f2538c786450d3727b3f0d893305b4ad85.tar.gz historical-5d15e7f2538c786450d3727b3f0d893305b4ad85.tar.bz2 historical-5d15e7f2538c786450d3727b3f0d893305b4ad85.zip |
Bump to 0.7. Fixes #118113. Added ~sparc and ~amd64 keywords. Ebuild modifications by Marko Durkovic and Aiko Barz.
Package-Manager: portage-2.2_rc23/cvs/Linux x86_64
Diffstat (limited to 'net-im/mu-conference/files')
-rw-r--r-- | net-im/mu-conference/files/mu-conference-0.7.init | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net-im/mu-conference/files/mu-conference-0.7.init b/net-im/mu-conference/files/mu-conference-0.7.init new file mode 100644 index 000000000000..0ac2f6357913 --- /dev/null +++ b/net-im/mu-conference/files/mu-conference-0.7.init @@ -0,0 +1,25 @@ +#!/sbin/runscript + +depend() { + need net + use jabber-server +} + +start() { + ebegin "Starting MUC Jabber Transport" + start-stop-daemon \ + --background \ + --start \ + --chuid jabber:jabber \ + --exec /usr/bin/mu-conference \ + -- -c /etc/jabber/mu-conference.xml + eend $? +} + +stop() { + ebegin "Stoping MUC Jabber Transport" + start-stop-daemon \ + --stop \ + --pidfile /var/run/jabber/mu-conference.pid + eend $? +} |