File: post_install_exceptions

package info (click to toggle)
piuparts 0.62
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,692 kB
  • sloc: python: 6,823; sh: 2,194; makefile: 126
file content (18 lines) | stat: -rwxr-xr-x 467 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
set -e

log_debug() {
	echo "Debug: piuparts exception for package $PIUPARTS_OBJECTS"
}

case ${PIUPARTS_OBJECTS%%=*} in
	apt-listbugs)		log_debug
				# when installed apt-listbugs is run on installations / upgrades
				# and will cause them to fail due to prompting
				# if packages being installed currently have RC bugs.
				# so disable it here.
				dpkg-divert --rename /usr/sbin/apt-listbugs

				ln -svf /bin/true /usr/sbin/apt-listbugs
				;;
esac