File: puppet-module-openstacklib.prerm

package info (click to toggle)
puppet-module-openstacklib 13.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 676 kB
  • sloc: ruby: 3,574; python: 40; sh: 21; makefile: 17
file content (11 lines) | stat: -rwxr-xr-x 237 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "${1}" = "remove" ] || [ "${1}" = "upgrade" ] || [ "${1}" = "deconfigure" ] ; then
	update-alternatives --remove puppet-module-openstacklib /usr/share/puppet/modules.available/openstacklib
fi

#DEBHELPER#

exit 0