4b6da3e7aa
This change adds the package hash2stuff. This module will convert puppet hashes into different formats commonly used for config files This package will be used in change: https://review.opendev.org/c/starlingx/stx-puppet/+/881496 Story: 2010591 Task: 47952 Change-Id: I7cd5b3337606422e75fd9e4ad711c7ce56b4f27d Signed-off-by: Andre Kantek <andrefernandozanella.kantek@windriver.com>
14 lines
274 B
Bash
14 lines
274 B
Bash
#!/bin/sh
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "remove" ] || [ "${1}" = "upgrade" || [ "${1}" = "deconfigure" ]; then
|
|
update-alternatives --remove puppet-module-hash2stuff \
|
|
/usr/share/puppet/modules.available/puppet-hash2stuff
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|