diff options
author | Steve Langasek <vorlon@debian.org> | 2008-08-21 14:11:49 -0700 |
---|---|---|
committer | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 17:28:26 -0800 |
commit | 6ad17f1ce4152aeaaf31e39256d5282a8381ca0f (patch) | |
tree | ef26bd30e7906f67b67242649d90549af39dcb1b /debian/libpam-runtime.prerm | |
parent | 4324c28e77e9cbb77fe4c1b1c3d6e09bf439d4ef (diff) | |
download | pam-6ad17f1ce4152aeaaf31e39256d5282a8381ca0f.tar.gz pam-6ad17f1ce4152aeaaf31e39256d5282a8381ca0f.tar.bz2 pam-6ad17f1ce4152aeaaf31e39256d5282a8381ca0f.zip |
use pam-auth-update --remove in the package prerms
Diffstat (limited to 'debian/libpam-runtime.prerm')
-rw-r--r-- | debian/libpam-runtime.prerm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/libpam-runtime.prerm b/debian/libpam-runtime.prerm new file mode 100644 index 00000000..5197e91b --- /dev/null +++ b/debian/libpam-runtime.prerm @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +if [ "$1" = remove ]; then + pam-auth-update --package --remove unix +fi |