File: python-oslo.rootwrap.postrm

package info (click to toggle)
python-oslo.rootwrap 5.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 312 kB
  • ctags: 241
  • sloc: python: 1,558; sh: 36; makefile: 21
file content (12 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "remove" ] || [ "$1" = "disappear" ] ; then
	update-alternatives --remove oslo-rootwrap /usr/bin/python2-oslo-rootwrap
	update-alternatives --remove oslo-rootwrap-daemon /usr/bin/python2-oslo-rootwrap-daemon
fi

#DEBHELPER#

exit 0