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-wireless/kismet/files/kismet.initd

27 lines
629 B

#!/sbin/openrc-run
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
checkconfig() {
if [ ! -e /etc/kismet.conf ]; then
eerror "Configuration file /etc/kismet.conf not found"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting kismet server"
start-stop-daemon --start --quiet --pidfile /var/run/kismet_server.pid \
--background --make-pidfile --exec /usr/bin/kismet_server \
-- ${KISMET_SERVER_OPTIONS}
eend ${?}
}
stop() {
ebegin "Stopping kismet server"
start-stop-daemon --stop --quiet --pidfile /var/run/kismet_server.pid
eend ${?}
}