From 92f8ebf943aab10ad5923516a3d2803a555eed44 Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Wed, 24 Aug 2011 10:40:55 +0900 Subject: [PATCH] Debian: set -e in brcompat postinst As reported by lintian: The maintainer script doesn't seem to set the -e flag which ensures that the script's execution is aborted when any executed command fails. Refer to Debian Policy Manual section 10.4 (Scripts) for details. --- debian/openvswitch-brcompat.postinst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/openvswitch-brcompat.postinst b/debian/openvswitch-brcompat.postinst index 8113e31af..12e3b0557 100755 --- a/debian/openvswitch-brcompat.postinst +++ b/debian/openvswitch-brcompat.postinst @@ -1,5 +1,7 @@ #!/bin/sh +set -e + # If openvswitch-switch is installed, and then later openvswitch-brcompat is # installed, make sure that ovs-brcompatd starts. if test X"$1" = Xconfigure && \ -- 2.43.0