integ/config/puppet-modules/puppet-ldap/debian/deb_folder/puppet-ldap.postrm
Dan Voiculeasa 698c14ccef Add debian package for puppet-ldap module
Openldap seems to be bumped to 2.4.57 in Debian from 2.4.40 in CentOS.
Use the same version for puppet-ldap as on CentOS.
Another candidate is
https://github.com/voxpupuli/puppet-openldap/tree/2.0.0.

Did build puppet-ldap. There was no patch to port.
Did build iso.

Story: 2009101
Task: 43391
Signed-off-by: Dan Voiculeasa <dan.voiculeasa@windriver.com>
Change-Id: Ic5b7a4af4f69a2cd78f509179547dd4c85744750
2021-09-28 12:20:08 +03:00

14 lines
236 B
Bash

#!/bin/sh
# see: dh_installdeb(1)
set -e
if [ "${1}" = "remove" ] || [ "${1}" = "disappear" ]; then
update-alternatives --remove puppet-module-ldap \
/usr/share/puppet/modules.available/puppet-ldap
fi
#DEBHELPER#
exit 0