File: python3-tempest.postrm

package info (click to toggle)
tempest 1%3A25.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,596 kB
  • sloc: python: 76,974; sh: 260; makefile: 56
file content (19 lines) | stat: -rwxr-xr-x 816 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

if [ "$1" = "remove" ] || [ "$1" = "disappear" ] ; then
	update-alternatives --remove check-uuid /usr/bin/python3-check-uuid
	update-alternatives --remove javelin2 /usr/bin/python3-javelin2
	update-alternatives --remove run-tempest-stress /usr/bin/python3-run-tempest-stress
	update-alternatives --remove skip-tracker /usr/bin/python3-skip-tracker
	update-alternatives --remove tempest /usr/bin/python3-tempest
	update-alternatives --remove tempest-account-generator /usr/bin/python3-tempest-account-generator
	update-alternatives --remove tempest-cleanup /usr/bin/python3-tempest-cleanup
	update-alternatives --remove verify-tempest-config /usr/bin/python3-verify-tempest-config
	update-alternatives --remove subunit-describe-calls /usr/bin/python3-subunit-describe-calls
fi

#DEBHELPER#

exit 0