blob: d46acfacb4a3b7ef9b48d22becc303a3e71272b2 (
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
|
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need zfs
}
start() {
ebegin "Starting ZFS Event daemon"
checkpath -q -d -m 0755 /var/run/zed
start-stop-daemon --start -q \
--exec /sbin/zed -- -M \
-p /var/run/zed/pid
eend $?
}
stop() {
ebegin "Stopping ZFS Event daemon"
start-stop-daemon --stop -q --pidfile /var/run/zed/pid
eend $?
}
|