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/chillispot/files/chillispot

34 lines
823 B

#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/chillispot/files/chillispot,v 1.1 2006/03/05 11:42:38 solar Exp $
depend() {
use net logger
}
checkconfig() {
if [ -f /etc/chilli.conf ]; then
return 0;
else
eerror "Error starting chillispot. Please create /etc/chilli.conf before."
return 1;
fi
}
start() {
checkconfig || return 1
ebegin "Starting Chillispot"
start-stop-daemon --start --quiet \
--exec /usr/sbin/chilli
eend $?
}
stop() {
ebegin "Stopping Chillispot"
start-stop-daemon --stop --pidfile /var/run/chilli.pid --quiet
eend $?
}