Update of /cvsroot/devil-linux/build/scripts/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6332/scripts/scripts
Added Files:
motion
Log Message:
initial checkin of motion
--- NEW FILE: motion ---
#!/bin/bash
#
# $Source: /cvsroot/devil-linux/build/scripts/scripts/motion,v $
# $Revision: 1.1 $
# $Date: 2004/03/01 23:20:23 $
#
# http://www.devil-linux.org
#
### BEGIN INIT INFO
# Provides: motion
# Required-Start: $network $syslog
# Required-Stop: $network $syslog
# Default-Start: 3 5
# Default-Stop: 6 0
# Description: starts motion
### END INIT INFO
# settings
source /etc/sysconfig/config
# parameters
NAME="Motion"
CONFIGNAME=MOTION
DAEMON=/usr/sbin/motion
PARAMETER=
# source function library
source /etc/init.d/functions
eval START=\$START_$CONFIGNAME
# Determine the base and follow a runlevel link name.
base=${0##*/}
link=${base#*[SK][0-9][0-9]}
# Force execution if not called by a runlevel directory.
test $link = $base && START=yes
test "$START" = "yes" || exit 0
if [ ! -e $DAEMON ]; then
echo
echo "$DAEMON not found. Did you install the package?"
exit 1
fi
case "$1" in
start)
for MODULE in $MOTION_MODULES
do
echo Loading module $MODULE
modprobe -k $MODULE
done
# wait until modules are initialized
sleep 3
echo "Starting $NAME: "
$DAEMON $PARAMETER &> /dev/null &
;;
stop)
echo -n "Shutting down $NAME: "
killproc $DAEMON
for MODULE in $MOTION_MODULES
do
echo Un-Loading module $MODULE
rmmod $MODULE
done
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
|