File: postrm-php

package info (click to toggle)
dh-php 5.19
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 108 kB
  • sloc: perl: 158; sh: 126; makefile: 123
file content (29 lines) | stat: -rw-r--r-- 730 bytes parent folder | download | duplicates (3)
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
# Hey emacs, this is -*- shell-script -*-

if [ "$1" = "remove" ]; then
    if [ -e /usr/lib/php/php-maintscript-helper ] ; then
	. /usr/lib/php/php-maintscript-helper

	for version in #VERSIONS# ; do
	    for name in #NAMES# ; do
		php_invoke #HELPER# "$version" ALL "$name" || #ERROR_HANDLER#
	    done
	done
    fi
fi

if [ "$1" = "purge" ] ; then
    # Final cleanup of possible leftover symlinks
    for version in #VERSIONS# ; do
	inidir="/etc/php/$version"
	for name in #NAMES#; do
	    inifile="${name}.ini"
	    find "${inidir}" -xtype l 2>/dev/null | \
	    while read symlink; do
	        if [ "$(basename "$(readlink -m "${symlink}")")" = "${inifile}" ]; then
		    rm -f "${symlink}"
		fi
	    done
	done
    done
fi