File: python3-oslo.policy.prerm

package info (click to toggle)
python-oslo.policy 4.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,012 kB
  • sloc: python: 6,099; makefile: 23; sh: 20
file content (15 lines) | stat: -rwxr-xr-x 548 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

if [ "$1" = "remove" ] ; then
	update-alternatives --remove oslopolicy-checker /usr/bin/python3-oslopolicy-checker
	update-alternatives --remove oslopolicy-list-redundant /usr/bin/python3-oslopolicy-list-redundant
	update-alternatives --remove oslopolicy-policy-generator /usr/bin/python3-oslopolicy-policy-generator
	update-alternatives --remove oslopolicy-sample-generator /usr/bin/python3-oslopolicy-sample-generator
	update-alternatives --remove oslopolicy-checker /usr/bin/python3-oslopolicy-checker
fi

#DEBHELPER#

exit 0