File: puppet-module-vswitch.postrm

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

set -e

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

#DEBHELPER#

exit 0