blob: 9d9e9452f56597dc193fa6fec0a88d50c85943cb (
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
|
#!/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/{,proc,lock,socket,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 $?
}
|