File: python3-subunit2sql.postrm

package info (click to toggle)
python-subunit2sql 1.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,788 kB
  • sloc: python: 5,799; sh: 75; makefile: 28; sql: 12
file content (14 lines) | stat: -rw-r--r-- 415 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 sql2subunit /usr/bin/python3-sql2subunit
	update-alternatives --remove subunit2sql /usr/bin/python3-subunit2sql
	update-alternatives --remove subunit2sql-db-manage /usr/bin/python3-subunit2sql-db-manage
	update-alternatives --remove subunit2sql-graph /usr/bin/python3-subunit2sql-graph
fi

#DEBHELPER#

exit 0