summaryrefslogtreecommitdiff
path: root/src/qemu/virtqemud.init.in
blob: b7c385db18ec285b5b28102fff576a1d990b04eb (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
26
#!/sbin/openrc-run

description="Virtualization qemu daemon"

VIRTQEMUD_OPTS=${VIRTQEMUD_OPTS:-"${VIRTQEMUD_OPTS}"}
VIRTQEMUD_TIMEOUT=${VIRTQEMUD_TERMTIMEOUT:-"TERM/25/KILL/5"}

command="@sbindir@/virtqemud"
command_args="-d ${VIRTQEMUD_OPTS}"
pidfile="@runstatedir@/virtqemud.pid"
retry="${VIRTQEMUD_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() virtqemud"

    start-stop-daemon --signal SIGHUP \
      --exec "${command}" --pidfile "${pidfile}"
}