mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
27 lines
651 B
Plaintext
27 lines
651 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Virtualization secret daemon"
|
||
|
|
||
|
VIRTSECRETD_OPTS=${VIRTSECRETD_OPTS:-"${VIRTSECRETD_OPTS}"}
|
||
|
VIRTSECRETD_TIMEOUT=${VIRTSECRETD_TERMTIMEOUT:-"TERM/25/KILL/5"}
|
||
|
|
||
|
command="@sbindir@/virtsecretd"
|
||
|
command_args="-d ${VIRTSECRETD_OPTS}"
|
||
|
pidfile="@runstatedir@/virtsecretd.pid"
|
||
|
retry="${VIRTSECRETD_TERMTIMEOUT}"
|
||
|
|
||
|
extra_started_commands="reload"
|
||
|
description_reload="re-exec the daemon to enforce configuration reload"
|
||
|
|
||
|
depend() {
|
||
|
use ceph dbus iscsid virtlockd
|
||
|
after nfs nfsmount
|
||
|
}
|
||
|
|
||
|
reload() {
|
||
|
ebegin "re-exec() virtsecretd"
|
||
|
|
||
|
start-stop-daemon --signal SIGHUP \
|
||
|
--exec "${command}" --pidfile "${pidfile}"
|
||
|
}
|