[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. 7ede1d967f51158359268e5153a1a259b68a22a5

Stephen Gran steve at lobefin.net
Tue Nov 11 21:21:06 UTC 2008


The following commit has been merged in the debian/unstable branch:
commit ef0f8f091e3de9755f66b8189fd35b073707c368
Author: Stephen Gran <steve at lobefin.net>
Date:   Tue Nov 11 21:18:21 2008 +0000

    Skip 'sleep until -e socket' logic if socket is of type inet (LP #296086)

diff --git a/debian/changelog b/debian/changelog
index a50554e..79b048a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 clamav (0.94.dfsg.1-1) unstable; urgency=low
 
   * New upstream version
+  * Skip 'sleep until -e socket' logic if socket is of type inet (LP #296086)
 
- -- Stephen Gran <sgran at debian.org>  Tue, 11 Nov 2008 19:44:55 +0000
+ -- Stephen Gran <sgran at debian.org>  Tue, 11 Nov 2008 21:17:20 +0000
 
 clamav (0.94.dfsg-2) unstable; urgency=low
 
diff --git a/debian/clamav-milter.init.in b/debian/clamav-milter.init.in
index 32c0422..2788877 100644
--- a/debian/clamav-milter.init.in
+++ b/debian/clamav-milter.init.in
@@ -95,7 +95,7 @@ case "$1" in
     $SUPERVISOR $SUPERVISORARGS -X "$SUPERVISOR_EXEC"
     ret=$?
   fi
-  if [ $ret = 0 ] && [ "$USE_POSTFIX" = 'yes' ]; then
+  if [ $ret = 0 ] && [ "$USE_POSTFIX" = 'yes' ] && [ "${SOCKET_PATH#inet}" != "${SOCKET_PATH}" ]; then
     cnt=0
     until [ -e "$SOCKET_PATH" ] ; do
       cnt=`expr "$cnt" + 1`

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list