diff --git a/pcsc-lite/trunk/trunk/debian/changelog b/pcsc-lite/trunk/trunk/debian/changelog index d4a6858..61a9279 100644 --- a/pcsc-lite/trunk/trunk/debian/changelog +++ b/pcsc-lite/trunk/trunk/debian/changelog @@ -4,8 +4,9 @@ pcsc-lite (1.4.99-2) unstable; urgency=low usage * debian/pcscd.init - do not try to kill children since pcscd do not fork + - use --retry=3 instead of --retry=TERM/30/KILL/5 in stop rule - -- Ludovic Rousseau Sat, 02 Feb 2008 17:39:16 +0100 + -- Ludovic Rousseau Sat, 02 Feb 2008 17:42:05 +0100 pcsc-lite (1.4.99-1) unstable; urgency=low diff --git a/pcsc-lite/trunk/trunk/debian/pcscd.init b/pcsc-lite/trunk/trunk/debian/pcscd.init index d3bb111..1a1f426 100644 --- a/pcsc-lite/trunk/trunk/debian/pcscd.init +++ b/pcsc-lite/trunk/trunk/debian/pcscd.init @@ -82,7 +82,7 @@ do_stop() # 1 if daemon was already stopped # 2 if daemon could not be stopped # other if a failure occurred - start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME + start-stop-daemon --stop --quiet --retry=3 --pidfile $PIDFILE --name $NAME RETVAL="$?" [ "$RETVAL" = 2 ] && return 2 }