
Add packaging infrastructure for puppet-dcmanager to build a debian package. Story: 2009101 Task: 43316 Signed-off-by: Charles Short <charles.short@windriver.com> Change-Id: I49ff3321ec1675800c0309c738fe0bb3f068cfaa
12 lines
248 B
Bash
Executable File
12 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "remove" ] || [ "${1}" = "upgrade" ] || [ "${1}" = "deconfigure" ] ; then
|
|
update-alternatives --remove puppet-module-starlingx-dcmanager /usr/share/puppet/modules.available/dcmanager
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|