]> git.deb.at Git - pkg/blosxom.git/commitdiff
Use "set -e" instead of "-e" option to sh in maintainer scripts
authorAxel Beckert <abe@deuxchevaux.org>
Sat, 7 Feb 2015 13:17:46 +0000 (14:17 +0100)
committerAxel Beckert <abe@deuxchevaux.org>
Sat, 7 Feb 2015 13:17:46 +0000 (14:17 +0100)
debian/changelog
debian/postrm
debian/preinst

index c60ca095536ebe754950e919a545e1c49f7ad335..cf2b7958cd4776c1fe7cc004f590204d6231e1e4 100644 (file)
@@ -2,6 +2,7 @@ blosxom (2.1.2-2) UNRELEASED; urgency=medium
 
   * Apply patch by Chris Lamb to make the build reproducible.
   * Update my e-mail address.
+  * Use "set -e" instead of "-e" option to sh in maintainer scripts.
 
  -- Axel Beckert <abe@debian.org>  Sat, 07 Feb 2015 13:54:51 +0100
 
index 67ae3bcbab03fe28513d59f19b802480b830588a..cfba717f2e274745dc35aa95c8ab7cfb1cb33a44 100644 (file)
@@ -1,8 +1,10 @@
-#!/bin/sh -e
+#!/bin/sh
 # postrm script for blosxom
 # copyright 2007-2008 by Gerfried Fuchs <rhonda@debian.at>
 # Licenced in the same way as blosxom itself
 
+set -e
+
 # cleanup for old flavors that got installed by packages prior to 2.1.0
 case "$1" in
     purge)
index ff3f84eebb3f5a22059dcfcbec3ed95803d5ddc8..c23cfbc22ba842cfb8fb6231777fca40a6fda642 100644 (file)
@@ -1,8 +1,10 @@
-#!/bin/sh -e
+#!/bin/sh
 # preinst script for blosxom
 # copyright 2007-2008 by Gerfried Fuchs <rhonda@debian.at>
 # Licenced in the same way as blosxom itself
 
+set -e
+
 rm_conffile() {
        PKGNAME="$1"
        CONFFILE="$2"