File: prerm-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 (14 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Hey emacs, this is -*- shell-script -*-

# 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 #HELPER# "$version" ALL "$name" || #ERROR_HANDLER#
	    done
	done
    fi
fi