File: python3-bandit.prerm

package info (click to toggle)
bandit 1.7.10-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,864 kB
  • sloc: python: 19,727; makefile: 23; sh: 14
file content (13 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (6)
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/python3-bandit
	update-alternatives --remove bandit-config-generator /usr/bin/python3-bandit-config-generator
	update-alternatives --remove bandit-baseline /usr/bin/python3-bandit-baseline
fi

#DEBHELPER#

exit 0