This file is indexed.

postinst is in dcmtk-www 3.6.0-15.

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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh -e
# postinst script for dcmtk-www

pkg=dcmtk

apache_install() {
        webserver=apache2
        if [ -d /etc/$webserver/conf-available ] && [ ! -e /etc/$webserver/conf-available/${pkg} ]; then
                ln -s ../../${pkg}/apache.conf /etc/$webserver/conf-available/${pkg}
	        # Restart webserver to register configuration for dcmtk if config is considered to be OK
        	if ${webserver}ctl configtest 2>/dev/null; then
	            if [ -x /usr/sbin/invoke-rc.d ]; then
        	        invoke-rc.d $webserver reload 3>/dev/null || true
	            else
        	        /etc/init.d/$webserver reload 3>/dev/null || true
	        fi
        else
            echo "Your $webserver configuration is broken, so we're not restarting it for you."
        fi

        fi
}

case "$1" in
    configure)
    	apache_install
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac



exit 0