File: python-bandit.prerm

package info (click to toggle)
bandit 1.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,288 kB
  • sloc: python: 8,582; sh: 74; makefile: 12
file content (13 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = "remove" ] ; then
	update-alternatives --remove bandit /usr/bin/python2-bandit
	update-alternatives --remove bandit-config-generator /usr/bin/python2-bandit-config-generator
	update-alternatives --remove bandit-baseline /usr/bin/python2-bandit-baseline
fi

#DEBHELPER#

exit 0