68bf538fef
In CentOS 7 puppi 2.2.3 is used. Lastest version is 2.2.11. Puppi supports Puppet 5 starting with 2.2.5 version. Create debian packaging for puppi 2.2.11. Did build puppet-puppi. Did build iso. Story: 2009101 Task: 43254 Signed-off-by: Dan Voiculeasa <dan.voiculeasa@windriver.com> Change-Id: I7efd1c988418181e63e6d27105ea90788f46bfb1
14 lines
264 B
Bash
14 lines
264 B
Bash
#!/bin/sh
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "remove" ] || [ "${1}" = "upgrade" || [ "${1}" = "deconfigure" ]; then
|
|
update-alternatives --remove puppet-module-puppi \
|
|
/usr/share/puppet/modules.available/puppet-puppi
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|