File: preinst-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 (30 lines) | stat: -rw-r--r-- 829 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
30
# Hey emacs, this is -*- shell-script -*-

if [ "$1" = "upgrade" ]; then
    # Cleanup of the old symlinks (including broken 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

# Disable and then re-enable module on upgrades to deal with priority changes
if [ "$1" = "upgrade" ]; 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 dismod "$version" ALL "$name" || #ERROR_HANDLER#
	    done
	done
    fi
fi