sane: Update to 1.0.28

This patch updates the package and removes the sanedloop script
which was needed to launch saned, but that program can now run
in standalone mode.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Michael Tremer
2019-09-29 14:50:31 +00:00
committed by Arne Fitzenreiter
parent c132fed64d
commit 1ad45a5a09
7 changed files with 215 additions and 829 deletions

View File

@@ -8,9 +8,6 @@
#
# Version : 01.00
#
# Notes : runs sanedloop ibecause saned is intended
# for use with (x)inet.d
#
########################################################################
. /etc/sysconfig/rc
@@ -19,15 +16,13 @@
case "${1}" in
start)
boot_mesg "Starting saned - network scanner deamon..."
loadproc /usr/local/bin/sanedloop
loadproc /usr/sbin/saned -lD
evaluate_retval
;;
stop)
boot_mesg "Stopping saned - network scanner deamon..."
killproc sanedloop
killall -s KILL -w saned > /dev/null 2>&1
exit 0
killproc /usr/sbin/saned
;;
restart)
@@ -37,7 +32,6 @@ case "${1}" in
;;
status)
statusproc /usr/bin/sanedloop
statusproc /usr/sbin/saned
;;