File: puppet-module-barbican.prerm

package info (click to toggle)
puppet-module-barbican 17.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 720 kB
  • sloc: ruby: 2,251; python: 37; sh: 15; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (2)
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-barbican /usr/share/puppet/modules.available/barbican
fi

#DEBHELPER#

exit 0