File: python3-oslotest.prerm

package info (click to toggle)
python-oslotest 1%3A4.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 416 kB
  • sloc: python: 970; sh: 95; makefile: 21
file content (14 lines) | stat: -rwxr-xr-x 347 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = "remove" ] ; then
	update-alternatives --remove oslo_debug_helper /usr/bin/python3-oslo_debug_helper
	update-alternatives --remove oslo_run_pre_release_tests /usr/bin/python3-oslo_run_pre_release_tests
	update-alternatives --remove oslo_run_cross_tests /usr/bin/python3-oslo_run_cross_tests
fi

#DEBHELPER#

exit 0