summaryrefslogtreecommitdiff
blob: 3126cc8e1e20d9e4f5335c80cfd8fa9de91f2161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

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() {
	need net
	provide jabber-server
	use dns postgresql
}

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 -f -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 $?
}