mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-27 08:05:24 +00:00
27 lines
662 B
Plaintext
27 lines
662 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Virtualization interface daemon"
|
||
|
|
||
|
VIRTINTERFACED_OPTS=${VIRTINTERFACED_OPTS:-"${VIRTINTERFACED_OPTS}"}
|
||
|
VIRTINTERFACED_TIMEOUT=${VIRTINTERFACED_TERMTIMEOUT:-"TERM/25/KILL/5"}
|
||
|
|
||
|
command="@sbindir@/virtinterfaced"
|
||
|
command_args="-d ${VIRTINTERFACED_OPTS}"
|
||
|
pidfile="@runstatedir@/virtinterfaced.pid"
|
||
|
retry="${VIRTINTERFACED_TERMTIMEOUT}"
|
||
|
|
||
|
extra_started_commands="reload"
|
||
|
description_reload="re-exec the daemon to enforce configuration reload"
|
||
|
|
||
|
depend() {
|
||
|
use dbus
|
||
|
after nfs nfsmount
|
||
|
}
|
||
|
|
||
|
reload() {
|
||
|
ebegin "re-exec() virtinterfaced"
|
||
|
|
||
|
start-stop-daemon --signal SIGHUP \
|
||
|
--exec "${command}" --pidfile "${pidfile}"
|
||
|
}
|