diff options
author | Steve Langasek <vorlon@debian.org> | 2009-08-26 14:02:24 -0700 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 21:25:58 -0800 |
commit | 9b3aedeb47ac0f16f3a41d3a62d5161815de2555 (patch) | |
tree | e6a9a0323975e14baa2e4a36c4cf91308637c040 | |
parent | 01a2f2e713d0ffcfd398e311f9f70984fbcec049 (diff) | |
download | pam-9b3aedeb47ac0f16f3a41d3a62d5161815de2555.tar.gz pam-9b3aedeb47ac0f16f3a41d3a62d5161815de2555.tar.bz2 pam-9b3aedeb47ac0f16f3a41d3a62d5161815de2555.zip |
Use /bin/sh instead of /bin/bash for libpam0g.postinst, since we've
confirmed there are no longer any bashisms there. Closes: #519973.
-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. |