File: python3-oslo.rootwrap.postinst

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-- 303 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "configure" ] ; then
	update-alternatives --install /usr/bin/oslo-rootwrap oslo-rootwrap /usr/bin/python3-oslo-rootwrap 200
	update-alternatives --install /usr/bin/oslo-rootwrap-daemon oslo-rootwrap-daemon /usr/bin/python3-oslo-rootwrap-daemon 200
fi

#DEBHELPER#

exit 0