gentoo-overlay/sys-fs/stratisd/files/init.d.stratisd-r3

20 lines
532 B
Plaintext
Raw Normal View History

2020-01-06 18:01:55 +03:00
#!/sbin/openrc-run
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
2021-06-07 11:14:50 +03:00
command="/usr/libexec/stratisd"
2020-01-06 18:01:55 +03:00
command_args="--debug"
command_background=true
2020-01-06 18:10:14 +03:00
output_log=/var/log/stratisd.log
error_log=/var/log/stratisd.log
pidfile=${pidfile:-/run/stratisd.pid}
2021-06-07 11:14:50 +03:00
description="Daemon that manages block devices to create filesystems"
2020-01-06 18:01:55 +03:00
description_start="Start stratis daemon"
description_stop="Stop stratis daemon"
depend() {
2021-06-07 11:14:50 +03:00
need sysfs dev-settle
2020-05-27 15:34:43 +03:00
before fsck checkfs
after modules
2020-01-06 18:01:55 +03:00
}