summaryrefslogtreecommitdiff
blob: 1282e9dc4561d712e0f8f3092a396f604e501d9d (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
#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

name="Prosody XMPP server"
extra_started_commands="reload"
jabber_pid="/run/jabber"
jabber_logs="/var/log/jabber"
pidfile="${jabber_pid}/prosody.pid"
prosody_config="/etc/jabber/prosody.cfg.lua"

command="/usr/bin/prosody"
command_group="jabber"
command_user="jabber"

checkconfig() {
	if [ ! -f "${prosody_config}" ]; then
		eerror "Please create ${prosody_config} before starting Prosody!"
		return 1
	fi

	luac -p "${prosody_config}"
	return $?
}

depend() {
	need net
	provide jabber-server
	use dns postgresql
}

reload() {
	ebegin "Reloading configuration"
	start-stop-daemon --signal HUP --pidfile "${pidfile}"
	eend $?
}

start_pre() {
	checkconfig || return 1

	checkpath -d -m 0750 -o "${command_user}:${command_group}" -q "${jabber_logs}"
	checkpath -d -m 0750 -o "${command_user}:${command_group}" -q "${jabber_pid}"
}