summaryrefslogtreecommitdiff
path: root/debian/libnss-tacplus.postinst
diff options
context:
space:
mode:
authorDave Olson <olson@cumulusnetworks.com>2017-06-23 14:07:35 -0700
committerDave Olson <olson@cumulusnetworks.com>2017-06-30 13:46:36 -0700
commit19008ab68d9d504aa58eb34d5f564755a1613b8b (patch)
tree94ced6d12c492aef6b904bac0d9069008c36d5f9 /debian/libnss-tacplus.postinst
parent6f721d9b26465ffd0e05a2f075ad76dd70c4fe8c (diff)
downloadlibnss-tacplus-19008ab68d9d504aa58eb34d5f564755a1613b8b.tar.gz
libnss-tacplus-19008ab68d9d504aa58eb34d5f564755a1613b8b.zip
Fixed remove to clean up plugin entries in nsswitch.conf
We weren't removing the tacplus plugin from nsswitch.conf on package remove, now we do. Also cleaned up a bit and use \s instead of [ \t] for whitespace. For postinst, moved into configure case where it belonged. Updated changelog for recent fixes and bumped version
Diffstat (limited to 'debian/libnss-tacplus.postinst')
-rw-r--r--debian/libnss-tacplus.postinst15
1 files changed, 7 insertions, 8 deletions
diff --git a/debian/libnss-tacplus.postinst b/debian/libnss-tacplus.postinst
index 9541608..77f16f4 100644
--- a/debian/libnss-tacplus.postinst
+++ b/debian/libnss-tacplus.postinst
@@ -7,6 +7,13 @@ set -e
case "$1" in
configure)
+ # Add tacplus to /etc/nsswitch.conf, since it's necessary
+ # for this package, and won't break anything else. Do nothing
+ # if tacplus is already present in the passwd line
+ if [ -e "/etc/nsswitch.conf" ]; then
+ sed -i -e '/tacplus\s/b' \
+ -e '/^passwd:/s/compat/tacplus &/' /etc/nsswitch.conf
+ fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
@@ -18,14 +25,6 @@ case "$1" in
;;
esac
-# Add tacplus to /etc/nsswitch.conf, since it's necessary
-# for this package, and won't break anything else. Do nothing
-# if tacplus is already present in the passwd line
-if [ -e "/etc/nsswitch.conf" ]; then
- sed -i -e '/tacplus/b' \
- -e '/^passwd/s/compat/tacplus &/' /etc/nsswitch.conf
-fi
-
#DEBHELPER#