[Pkg-sks-commit] r52 - sks/trunk/sks/debian
chrism at alioth.debian.org
chrism at alioth.debian.org
Thu Jun 19 14:43:37 UTC 2008
Author: chrism
Date: 2008-06-19 14:43:36 +0000 (Thu, 19 Jun 2008)
New Revision: 52
Modified:
sks/trunk/sks/debian/init
Log:
[project @ 53]
Do not exit with error (but with 0) if sks is not there - we should not fail if we were removed but not purged
Original author: weasel
Date: 2003-12-05 07:53:19.365595+00:00
Modified: sks/trunk/sks/debian/init
===================================================================
--- sks/trunk/sks/debian/init 2008-06-19 14:43:20 UTC (rev 51)
+++ sks/trunk/sks/debian/init 2008-06-19 14:43:36 UTC (rev 52)
@@ -13,8 +13,10 @@
# See if the daemon is there
+test -x $DAEMON || exit 0
+
if [ ! -x $DAEMON ]; then
- echo "ERROR: $DAEMON either is not there or is not executable"
+ echo "ERROR: $DAEMON either is not executable"
exit 1
fi
More information about the Pkg-sks-commit
mailing list