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/net-im/minbif/files/minbif.initd

24 lines
457 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
MINBIF_EXEC="/usr/bin/minbif"
depend() {
need logger net
}
start() {
ebegin "Starting minbif"
start-stop-daemon --start --startas ${MINBIF_EXEC} \
-c minbif:minbif --exec ${MINBIF_EXEC} -- \
/etc/minbif/minbif.conf
eend $?
}
stop() {
ebegin "Stopping minbif"
start-stop-daemon --stop --exec ${MINBIF_EXEC}
eend $?
}