Files
for-gentoo/sys-fs/zfs/files/zed
T
2017-09-10 17:37:54 +02:00

26 lines
442 B
Plaintext

#!/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 $?
}