Drop unmaintained add-on lcd4linux

This package has not received any updates or attention within the last
three years. It's sole known upstream URL (https://ssl.bulix.org/projects/lcd4linux/)
returns a HTTP error 404 nowadays, and the author was unable to locate
any upstream source that appears to be still maintained today.

Given the status quo, bugs in lcd4linux cannot be reported properly,
security issues won't be addressed (by anybody else then ourselves), and
technical questions cannot be clarified aside a reverse engineering
approach.

We should not allow such an add-on to be installed on a firewall system.

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
Reviewed-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Peter Müller
2021-06-02 20:36:31 +02:00
committed by Michael Tremer
parent 0b38fd75d4
commit c62adbc448
5 changed files with 0 additions and 143 deletions

View File

@@ -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