File: python-pulp.postinst

package info (click to toggle)
python-pulp 1.6.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,512 kB
  • ctags: 992
  • sloc: python: 6,003; makefile: 37; sh: 36
file content (12 lines) | stat: -rw-r--r-- 261 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/pulpdoctest pulpdoctest /usr/bin/python2-pulpdoctest 300
	update-alternatives --install /usr/bin/pulptest pulptest /usr/bin/python2-pulptest 300
fi

#DEBHELPER#

exit 0