[Pkg-openssl-changes] r130 - openssl/trunk/debian
Kurt Roeckx
kroeckx at costa.debian.org
Mon May 1 12:16:03 UTC 2006
Author: kroeckx
Date: 2006-05-01 12:16:02 +0000 (Mon, 01 May 2006)
New Revision: 130
Modified:
openssl/trunk/debian/changelog
openssl/trunk/debian/libssl0.9.8.postinst
Log:
libssl0.9.8.postinst makes uses of bashisms (local variables) so use #!/bin/bash
libssl0.9.8.postinst: Call set -e after sourcing the debconf script.
Modified: openssl/trunk/debian/changelog
===================================================================
--- openssl/trunk/debian/changelog 2006-04-07 16:30:23 UTC (rev 129)
+++ openssl/trunk/debian/changelog 2006-05-01 12:16:02 UTC (rev 130)
@@ -4,6 +4,10 @@
as it was uploaded.
* Add Galician debconf translation. Patch from
Jacobo Tarrio <jtarrio at trasno.net> (Closes: #361266)
+ * libssl0.9.8.postinst makes uses of bashisms (local variables)
+ so use #!/bin/bash
+ * libssl0.9.8.postinst: Call set -e after sourcing the debconf
+ script.
-- Kurt Roeckx <kurt at roeckx.be> Thu, 6 Apr 2006 20:34:07 +0200
Modified: openssl/trunk/debian/libssl0.9.8.postinst
===================================================================
--- openssl/trunk/debian/libssl0.9.8.postinst 2006-04-07 16:30:23 UTC (rev 129)
+++ openssl/trunk/debian/libssl0.9.8.postinst 2006-05-01 12:16:02 UTC (rev 130)
@@ -1,7 +1,9 @@
-#!/bin/sh -e
+#!/bin/bash
. /usr/share/debconf/confmodule
+set -e
+
package_name()
{
echo $(basename $0 .postinst)
More information about the Pkg-openssl-changes
mailing list