File: python-oslotest.prerm

package info (click to toggle)
python-oslotest 1%3A3.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 408 kB
  • sloc: python: 998; sh: 123; makefile: 24
file content (14 lines) | stat: -rwxr-xr-x 347 bytes parent folder | download | duplicates (3)
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/python2-oslo_debug_helper
	update-alternatives --remove oslo_run_pre_release_tests /usr/bin/python2-oslo_run_pre_release_tests
	update-alternatives --remove oslo_run_cross_tests /usr/bin/python2-oslo_run_cross_tests
fi

#DEBHELPER#

exit 0