summaryrefslogtreecommitdiff
path: root/net-mail/cyrus-imapd/files/cyrus.rc8
blob: e3be47fadf63d556e60dedcba8ebe50df7d687a3 (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
#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
	use net
	use dns logger
	after drac saslauthd
}

checkdirs() {
	for dir in /run/cyrus /run/cyrus/proc /run/cyrus/lock /run/cyrus/socket /run/cyrus/sync; do
		checkpath -q -d -o cyrus:mail -m 0750 "${dir}" || {
			eerror "Failed to create directory at $dir"
			return 1
		}
	done
}


start() {
	checkdirs || return 1
	ebegin "Starting cyrus imapd"
	start-stop-daemon --start --quiet --background \
		--exec /usr/libexec/cyrusmaster -- ${CYRUS_OPTS}
	eend $?
}

stop() {
	ebegin "Stopping cyrus imapd"
	start-stop-daemon --stop --quiet --pidfile /run/cyrus-master.pid
	eend $?
}