diff options
| author | أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net> | 2010-10-25 14:35:29 +0200 | 
|---|---|---|
| committer | أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net> | 2010-10-25 14:35:29 +0200 | 
| commit | bc37983c230346bdd5d2efb1dc16b94fce634c34 (patch) | |
| tree | feb9c8b87f92afb463b3d15b6d531629bfea62f2 | |
| parent | d1c70e774d61a229ba90205631994a0a85e29a63 (diff) | |
* debian/{*.postinst, *.postrm}: use set -e in the body of the
  script.
| -rw-r--r-- | debian/bitlbee-common.postinst | 4 | ||||
| -rw-r--r-- | debian/bitlbee-common.postrm | 4 | ||||
| -rw-r--r-- | debian/changelog | 6 | 
3 files changed, 10 insertions, 4 deletions
| diff --git a/debian/bitlbee-common.postinst b/debian/bitlbee-common.postinst index e3e28537..3225a02a 100644 --- a/debian/bitlbee-common.postinst +++ b/debian/bitlbee-common.postinst @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e  . /usr/share/debconf/confmodule diff --git a/debian/bitlbee-common.postrm b/debian/bitlbee-common.postrm index 5c3b4b2e..de48e229 100644 --- a/debian/bitlbee-common.postrm +++ b/debian/bitlbee-common.postrm @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e  [ "$1" = "purge" ] || exit 0 diff --git a/debian/changelog b/debian/changelog index bfa76127..aaa6a492 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,15 @@  bitlbee (3.0-2) UNRELEASED; urgency=low    * debian/bitlbee-common.postinst: Replace 'type' with 'which' to avoid bashism. -  * debian/*.prerm: use set -e in the body of the script. +  * debian/{*.prerm, *.postinst, *.postrm}: use set -e in the body of the +    script.    * debian/control:      + Corrected short description of bitlbee-plugin-otr      + Bumped Standards-Version to 3.9.1      + Added ${misc:Depends} for bitlbee & bitlbee-libpurple +  *  - -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Mon, 25 Oct 2010 14:29:22 +0200 + -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Mon, 25 Oct 2010 14:34:45 +0200  bitlbee (3.0-1) unstable; urgency=low | 
