File: python-tempest-lib.postrm

package info (click to toggle)
python-tempest-lib 0.14.0-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,156 kB
  • ctags: 1,867
  • sloc: python: 11,500; sh: 120; makefile: 52
file content (14 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = "remove" ] || [ "$1" = "disappear" ]; then
	update-alternatives --remove subunit-trace /usr/bin/python2-subunit-trace
	update-alternatives --remove skip-tracker /usr/bin/python2-skip-tracker
	update-alternatives --remove check-uuid /usr/bin/python2-check-uuid
fi

#DEBHELPER#

exit 0