dcabc13405
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
13 lines
225 B
Bash
Executable File
13 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "remove" ] || [ "${1}" = "disappear" ]; then
|
|
update-alternatives --remove puppet-module-starlingx-dcmanager \
|
|
/usr/share/puppet/modules.available/dcmanager
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|