[Pkg-mysql-commits] r1581 - mysql-proxy/trunk/debian
Norbert Tretkowski
nobse at alioth.debian.org
Sat Apr 25 10:14:57 UTC 2009
Author: nobse
Date: 2009-04-25 10:14:57 +0000 (Sat, 25 Apr 2009)
New Revision: 1581
Modified:
mysql-proxy/trunk/debian/postinst
mysql-proxy/trunk/debian/postrm
Log:
Don't ignore errors.
Modified: mysql-proxy/trunk/debian/postinst
===================================================================
--- mysql-proxy/trunk/debian/postinst 2009-04-25 10:14:30 UTC (rev 1580)
+++ mysql-proxy/trunk/debian/postinst 2009-04-25 10:14:57 UTC (rev 1581)
@@ -1,4 +1,7 @@
#! /bin/sh
+
+set -e
+
case "$1" in
configure)
Modified: mysql-proxy/trunk/debian/postrm
===================================================================
--- mysql-proxy/trunk/debian/postrm 2009-04-25 10:14:30 UTC (rev 1580)
+++ mysql-proxy/trunk/debian/postrm 2009-04-25 10:14:57 UTC (rev 1581)
@@ -1,4 +1,7 @@
#! /bin/sh
+
+set -e
+
case "$1" in
remove)
More information about the Pkg-mysql-commits
mailing list