]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Zut alors, delete motion initiscript as well :-/
authorPeter Müller <peter.mueller@ipfire.org>
Mon, 17 May 2021 21:57:18 +0000 (23:57 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 20 May 2021 09:31:12 +0000 (09:31 +0000)
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/initscripts/packages/motion [deleted file]

diff --git a/src/initscripts/packages/motion b/src/initscripts/packages/motion
deleted file mode 100644 (file)
index f5fa9c6..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-
-. /etc/sysconfig/rc
-. $rc_functions
-
-case "$1" in
-       start)
-               boot_mesg "Starting motion webcam server..."
-               if [ ! -e /dev/video0 ]; then
-                       boot_mesg "Error! No video input device found."
-                       echo_failure
-                       #No 3 min wait
-                       exit 0;
-               fi
-               chown :video /dev/video*
-               mkdir -p /var/motion/cam1
-               chown -R video: /var/motion/cam1
-               loadproc sudo -u video /usr/bin/motion
-               ;;
-
-       stop)
-               boot_mesg "Stopping motion webcam server..."
-               killproc /usr/bin/motion
-               ;;
-
-       restart)
-               $0 stop
-               sleep 1
-               $0 start
-               ;;
-
-       status)
-               statusproc /usr/bin/motion
-               ;;
-
-       *)
-               echo "Usage: $0 {start|stop|restart|status}"
-               exit 1
-               ;;
-esac
-
-# End $rc_base/init.d/motion