From 287632e70a394374c32cd5b5e587bcc98ef34cd0 Mon Sep 17 00:00:00 2001 From: Dinko Korunic Date: Sun, 23 Sep 2007 20:36:27 +0000 Subject: [PATCH] r9: - avoid exit on error when chowning --- debian/postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/postinst b/debian/postinst index 54c8a67..2beb6a1 100755 --- a/debian/postinst +++ b/debian/postinst @@ -30,7 +30,7 @@ esac # fix problem with permissions from the old package if dpkg --compare-versions "$2" lt "2:1.2.11-4"; then chown -f -Rh root:root /var/lib/iptables /etc/init.d/iptables \ - /etc/default/iptables >/dev/null 2>&1 + /etc/default/iptables >/dev/null 2>&1 || true fi # remove old iptables init script -- 1.7.10.4