
Add debian packaging infrasturcture to package puppet-smapi for Debian. Story: 2009101 Task: 43301 Signed-off-by: Charles Short <charles.short@windriver.com> Change-Id: I20125f40d3531db9b83f64b1a24c1701e2cbef9c
13 lines
217 B
Bash
Executable File
13 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "remove" ] || [ "${1}" = "disappear" ]; then
|
|
update-alternatives --remove puppet-module-starlingx-smapi \
|
|
/usr/share/puppet/modules.available/smapi
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|