summaryrefslogtreecommitdiff
path: root/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1
blob: f08c082709b33972be1d2063fb73a5ab037d11ef (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
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

start() {
    GA_METHOD=${GA_METHOD:-virtio-serial}
    GA_PATH=${GA_PATH:-/dev/virtio-ports/org.qemu.guest_agent.0}

    ebegin "Starting QEMU Guest Agent"

    start-stop-daemon --start --pidfile /run/qemu-ga.pid \
        --exec /usr/bin/qemu-ga -- -m ${GA_METHOD} -p ${GA_PATH} \
        -l /var/log/qemu-ga.log -d -f /run/qemu-ga.pid -t /run ${GA_OPTIONS}

    eend $?
}

stop() {
    ebegin "Stopping QEMU Guest Agent"

    start-stop-daemon --stop --pidfile /run/qemu-ga.pid

    eend $?
}