summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klausmann <klausman@gentoo.org>2014-10-14 10:53:36 +0000
committerTobias Klausmann <klausman@gentoo.org>2014-10-14 10:53:36 +0000
commit403849deaa39dc1ee5f321554c356bb3ba8d115a (patch)
tree6a6f22e94f06c86b54229bdb27916fa09a3f28e4 /net-im/prosody/files
parentVersion bump (diff)
downloadgentoo-2-403849deaa39dc1ee5f321554c356bb3ba8d115a.tar.gz
gentoo-2-403849deaa39dc1ee5f321554c356bb3ba8d115a.tar.bz2
gentoo-2-403849deaa39dc1ee5f321554c356bb3ba8d115a.zip
Update initd file to check for file permissions, re-add systemd files and clean up init script a bit
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)
Diffstat (limited to 'net-im/prosody/files')
-rw-r--r--net-im/prosody/files/prosody.initd-r147
1 files changed, 47 insertions, 0 deletions
diff --git a/net-im/prosody/files/prosody.initd-r1 b/net-im/prosody/files/prosody.initd-r1
new file mode 100644
index 000000000000..bc72e2e90ef1
--- /dev/null
+++ b/net-im/prosody/files/prosody.initd-r1
@@ -0,0 +1,47 @@
+#!/sbin/runscript
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/files/prosody.initd-r1,v 1.1 2014/10/14 10:53:36 klausman Exp $
+
+description="Prosody is a server for Jabber/XMPP written in Lua."
+description_reload="Reload configuration and reopen log files."
+extra_started_commands="reload"
+pidfile="/var/run/jabber/prosody.pid"
+
+depend() {
+ use dns
+ need net
+ provide jabber-server
+}
+
+checkconfig() {
+ if [ ! -e /etc/jabber/prosody.cfg.lua ] ; then
+ eerror "You need a /etc/jabber/prosody.cfg.lua file to run prosody"
+ return 1
+ fi
+ luac -p /etc/jabber/prosody.cfg.lua
+ return $?
+}
+
+start() {
+ checkconfig || return 1
+ checkpath -q -d -m 0770 -o jabber:jabber "$(dirname ${pidfile})"
+ checkpath -q -d -m 0770 -o jabber:jabber "${pidfile}"
+ checkpath -q -d -m 0750 -o jabber:jabber /var/log/jabber
+ ebegin "Starting Prosody XMPP Server"
+ prosodyctl start
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping Prosody XMPP Server"
+ prosodyctl stop
+ eend $?
+}
+
+reload() {
+ checkconfig || return 1
+ ebegin "Reloading configuration of Prosody XMPP Server"
+ prosodyctl reload
+ eend $?
+}