You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-emulation/libvirt-snmp/files/libvirt-snmp.initd-r1

28 lines
646 B

#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need snmpd
use snmptrapd
use libvirtd
}
start() {
ebegin "Starting libvirt subagent"
start-stop-daemon --start \
--env LIBVIRT_DEFAULT_URI="${LIBVIRT_DEFAULT_URI}" \
--exec /usr/bin/libvirtMib_subagent \
-- ${LIBVIRT_SNMP_OPTIONS}
eend $?
}
stop() {
ebegin "Stopping libvirt subagent"
# "--exec /usr/bin/libvirtMib_subagent" does not work and the name gets truncated
start-stop-daemon --stop \
--name libvirtMib_suba
eend $?
}