blob: 73c35b139ee51404956e9d9487827c9a2ce007c8 [file] [log] [blame]
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need net
}
start() {
ebegin "Starting ARP sponge"
start-stop-daemon --start --quiet --exec /usr/sbin/arpsponge \
-- --daemon ${ARPSPONGE_OPTS}
eend $?
}
stop() {
ebegin "Stopping ARP sponge"
start-stop-daemon --stop --quiet -n arpsponge
eend $?
}