diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/libpam0g.postinst | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 8310a6cb..4826ed6c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ pam (1.1.0-2) UNRELEASED; urgency=low to depend on libpam-modules if they reference modules from there. * make libpam-runtime depend on libpam-modules (>= 1.0.1-6) - nothing else guarantees that we have pam_unix available for use by pam-auth-update. + * Use /bin/sh instead of /bin/bash for libpam0g.postinst, since we've + confirmed there are no longer any bashisms there. Closes: #519973. -- Steve Langasek <vorlon@debian.org> Wed, 26 Aug 2009 09:23:57 -0700 diff --git a/debian/libpam0g.postinst b/debian/libpam0g.postinst index 4abe2bae..04d91b9e 100644 --- a/debian/libpam0g.postinst +++ b/debian/libpam0g.postinst @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # postinst based heavily on the postinst of libssl0.9.8, courtesy of # Christoph Martin. |