[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. debian/0.95+dfsg-1-3-g7e9a167

Michael Tautschnig mt at debian.org
Thu Mar 26 09:26:19 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 7e9a167fabd30c3208384c5b3bc7db80079d373c
Author: Michael Tautschnig <mt at debian.org>
Date:   Thu Mar 26 10:25:43 2009 +0100

    Lintian suggested that set -e be used explicitly
    
    - Replaced #!/bin/sh -e by #!/bin/sh and set -e
    
    Signed-off-by: Michael Tautschnig <mt at debian.org>

diff --git a/debian/clamav-base.config.in b/debian/clamav-base.config.in
index bfc79ea..4b795ab 100644
--- a/debian/clamav-base.config.in
+++ b/debian/clamav-base.config.in
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # Source debconf library
 . /usr/share/debconf/confmodule
diff --git a/debian/clamav-freshclam.config.in b/debian/clamav-freshclam.config.in
index fae1318..046c50a 100644
--- a/debian/clamav-freshclam.config.in
+++ b/debian/clamav-freshclam.config.in
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # Source debconf library
 . /usr/share/debconf/confmodule
diff --git a/debian/clamav-freshclam.prerm b/debian/clamav-freshclam.prerm
index e8fc214..4581090 100644
--- a/debian/clamav-freshclam.prerm
+++ b/debian/clamav-freshclam.prerm
@@ -1,4 +1,7 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
+
 if [ -x "/etc/init.d/clamav-freshclam" ]; then
   if [ -x /usr/sbin/invoke-rc.d ] ; then
     invoke-rc.d clamav-freshclam stop
diff --git a/debian/clamav-milter.config.in b/debian/clamav-milter.config.in
index c0d12ac..4f657ee 100644
--- a/debian/clamav-milter.config.in
+++ b/debian/clamav-milter.config.in
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # Source debconf library
 . /usr/share/debconf/confmodule

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list