diff options
author | أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net> | 2010-10-25 14:29:39 +0200 |
---|---|---|
committer | أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net> | 2010-10-25 14:29:39 +0200 |
commit | d1c70e774d61a229ba90205631994a0a85e29a63 (patch) | |
tree | 3b8ef13df962212e84447b051026b28f6db54ce2 | |
parent | 6e0e283f3169701eb06e0e27803706500c30ad3d (diff) |
* debian/*.prerm: use set -e in the body of the script.
-rw-r--r-- | debian/bitlbee-common.prerm | 4 | ||||
-rw-r--r-- | debian/bitlbee.prerm | 4 | ||||
-rw-r--r-- | debian/changelog | 5 |
3 files changed, 9 insertions, 4 deletions
diff --git a/debian/bitlbee-common.prerm b/debian/bitlbee-common.prerm index 50a49bee..768ddc15 100644 --- a/debian/bitlbee-common.prerm +++ b/debian/bitlbee-common.prerm @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e if [ "$1" = "upgrade" ]; then ## To prevent the help function from breaking in currently running diff --git a/debian/bitlbee.prerm b/debian/bitlbee.prerm index c61db24b..eeba2862 100644 --- a/debian/bitlbee.prerm +++ b/debian/bitlbee.prerm @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e if [ "$1" != "upgrade" ]; then invoke-rc.d bitlbee stop || exit 0 diff --git a/debian/changelog b/debian/changelog index 1b017514..bfa76127 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,13 @@ bitlbee (3.0-2) UNRELEASED; urgency=low - * debian/bitlbee-common.postinst: Replace 'type' with 'which' to avoid bashism + * debian/bitlbee-common.postinst: Replace 'type' with 'which' to avoid bashism. + * debian/*.prerm: 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:20:45 +0200 + -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org> Mon, 25 Oct 2010 14:29:22 +0200 bitlbee (3.0-1) unstable; urgency=low |