This file is indexed.

postrm is in phpldapadmin 1.2.2-5.2ubuntu2.

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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#! /bin/sh -e

set -e

case "$1" in
  remove)

    . /usr/share/debconf/confmodule
    db_version 2.0 || [ $? -lt 30 ]

    rm -f /usr/share/phpldapadmin/config.php

    db_get phpldapadmin/reconfigure-webserver
    webservers="$RET"
    restart=""

    for webserver in $webservers; do
        webserver=${webserver%,}

         case "$webserver" in
             apache|apache-perl|apache-ssl)
                 rm -f /etc/$webserver/conf.d/phpldapadmin
                 test -x /usr/sbin/$webserver || continue
                 restart="$restart $webserver"
                 ;;
             apache2)
                 if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
                     . /usr/share/apache2/apache2-maintscript-helper
                     apache2_invoke disconf phpldapadmin.conf || exit $?
                 fi
                 rm -f /etc/$webserver/conf-available/phpldapadmin.conf
                 ;;
             *)
                 ;;
         esac
    done

    db_get phpldapadmin/restart-webserver
	res="$RET"
	db_stop || true
    if [ "$res" = "true" ]; then
        for webserver in $restart; do
            webserver=${webserver%,}
            if [ -x /usr/sbin/invoke-rc.d ]; then
                invoke-rc.d $webserver restart
            else
                /etc/init.d/$webserver restart
            fi
        done
    fi
	;;

  purge)
	rm -f /usr/share/phpldapadmin/config/config.php

	for ext in '~' '%' .bak .ucf-new .ucf-old .ucf-dist;  do
		rm -f /etc/phpldapadmin/config.php$ext
	done

	rm -f /etc/phpldapadmin/config.php

	if which ucf >/dev/null; then
		ucf --purge /etc/phpldapadmin/config.php
	fi
	if which ucfr >/dev/null; then
		ucfr --purge phpldapadmin /etc/phpldapadmin/config.php
	fi

	rmdir --ignore-fail-on-non-empty /etc/phpldapadmin || true
	;;

esac

# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
	. /usr/share/debconf/confmodule
	db_purge
fi
# End automatically added section