]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/initscripts/packages/lcd4linux
Drop unmaintained add-on lcd4linux
[people/pmueller/ipfire-2.x.git] / src / initscripts / packages / lcd4linux
diff --git a/src/initscripts/packages/lcd4linux b/src/initscripts/packages/lcd4linux
deleted file mode 100644 (file)
index 34f8c8b..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-# Begin $rc_base/init.d/lcd4linux
-
-
-. /etc/sysconfig/rc
-. $rc_functions
-
-case "$1" in
-       start)
-               boot_mesg "Starting lcd4linux..."
-               if [ ! -f /etc/lcd4linux.conf ]; then
-                       boot_mesg "No configuration file found, not starting."
-                       exit 1
-               fi
-
-               loadproc /usr/bin/lcd4linux
-               ;;
-
-       stop)
-               boot_mesg "Stopping lcd4linux..."
-               killproc /usr/bin/lcd4linux
-               ;;
-
-       reload)
-               boot_mesg "Reloading lcd4linux..."
-               reloadproc /usr/bin/lcd4linux
-               ;;
-
-       restart)
-               $0 stop
-               sleep 3
-               $0 start
-               ;;
-
-       status)
-               statusproc /usr/bin/lcd4linux
-               ;;
-
-       *)
-               echo "Usage: $0 {start|stop|reload|restart|status}"
-               exit 1
-               ;;
-esac
-
-
-# End $rc_base/init.d/lcd4linux