diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-02 18:14:59 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-02 18:14:59 +0200 |
commit | 2ded63a0e6748018dada646691843462797cc7fc (patch) | |
tree | ac565e7bd01c3f362028c3b834e51162eb56ea90 /debian | |
parent | 522e4c741de5fe5a407c6601b7f1f430c10d4cfe (diff) | |
download | libnss-mapuser-2ded63a0e6748018dada646691843462797cc7fc.tar.gz libnss-mapuser-2ded63a0e6748018dada646691843462797cc7fc.zip |
Update package to 1.1.0-cl3u3
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | debian/copyright | 2 | ||||
-rw-r--r-- | debian/libnss-mapuser.prerm | 7 | ||||
-rw-r--r-- | debian/source/format | 3 |
4 files changed, 23 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index d0ea75f..a5fee01 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +libnss-mapuser (1.1.0-cl3u3) RELEASED; urgency=medium + + * minor fixes + + -- dev-support <dev-support@cumulusnetworks.com> Mon, 29 Oct 2018 13:34:42 -0700 + +libnss-mapuser (1.1.0-cl3u2) RELEASED; urgency=low + + * Changed postinst to not create unneeded home directories for + radius_user and radius_priv_user when running adduser at install + + -- dev-support <dev-support@cumulusnetworks.com> Wed, 18 Apr 2018 18:18:16 -0700 + libnss-mapuser (1.1.0-cl3u1) RELEASED; urgency=low * Closes CM-19866 - Fixed exclude_users not skipped, and added diff --git a/debian/copyright b/debian/copyright index cc8f9f1..c5ddcdd 100644 --- a/debian/copyright +++ b/debian/copyright @@ -21,4 +21,4 @@ License: GPL-2+ Files: * License: GPL-2+ -Copyright: 2017 Cumulus Networks, Inc. All rights reserved., +Copyright: 2017, 2018 Cumulus Networks, Inc. All rights reserved. diff --git a/debian/libnss-mapuser.prerm b/debian/libnss-mapuser.prerm index c9bb6b1..c4f259f 100644 --- a/debian/libnss-mapuser.prerm +++ b/debian/libnss-mapuser.prerm @@ -4,6 +4,13 @@ set -e if [ "$1" = remove ]; then pam-auth-update --package --remove mapuser + # Undo the addition of the plugins + if [ -e "/etc/nsswitch.conf" ]; then + sed -i -e '/^passwd:.*mapuid[ \t]/s/mapuid[ \t]//' \ + -e '/^passwd:.*[ \t]mapname/s/[ \t]mapname//' \ + -e '/^group:.*[ \t]mapname/s/[ \t]mapname//' \ + /etc/nsswitch.conf || true # don't prevent remove on error + fi fi #DEBHELPER# diff --git a/debian/source/format b/debian/source/format index af745b3..b9b0237 100644 --- a/debian/source/format +++ b/debian/source/format @@ -1 +1,2 @@ -3.0 (git) +1.0 + |