From: Simon Horman Date: Wed, 24 Aug 2011 01:40:55 +0000 (+0900) Subject: Debian: set -e in brcompat postinst X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92f8ebf943aab10ad5923516a3d2803a555eed44;p=openvswitch 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. --- diff --git a/debian/openvswitch-brcompat.postinst b/debian/openvswitch-brcompat.postinst index 8113e31a..12e3b055 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 && \