Debian: set -e in brcompat postinst
authorSimon Horman <horms@verge.net.au>
Wed, 24 Aug 2011 01:40:55 +0000 (10:40 +0900)
committerBen Pfaff <blp@nicira.com>
Wed, 24 Aug 2011 17:08:49 +0000 (10:08 -0700)
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

index 8113e31..12e3b05 100755 (executable)
@@ -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 && \