This file is indexed.

postinst is in dia-common 0.97.3+git20160930-8.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/bin/sh
set -e
# Automatically added by dh_installxmlcatalogs/UNDECLARED
if [ "$1" = "configure" ]; then
	update-xmlcatalog --sort --add --type system --id "http://www.lysator.liu.se/~alla/dia/" --package dia-common --local /usr/share/xml/dia/diagram.dtd
	update-xmlcatalog --sort --add --type system --id "http://www.lysator.liu.se/~alla/dia/dia-sheet-ns" --package dia-common --local /usr/share/xml/dia/sheet.dtd
	update-xmlcatalog --sort --add --type system --id "http://www.daa.com.au/~james/dia-shape-ns" --package dia-common --local /usr/share/xml/dia/shape.dtd

	update-xmlcatalog --sort --add --type system --id "http://www.lysator.liu.se/~alla/dia/" --package dia-common --root
	update-xmlcatalog --sort --add --type system --id "http://www.lysator.liu.se/~alla/dia/dia-sheet-ns" --package dia-common --root
	update-xmlcatalog --sort --add --type system --id "http://www.daa.com.au/~james/dia-shape-ns" --package dia-common --root

fi
# End automatically added section