summaryrefslogtreecommitdiff
path: root/debian/php5-fpm.postinst
blob: 19246bf1cad3a5a1479a5d6312e72c85295af35a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

#DEBHELPER#

if [ "$1" != "configure" ]; then
    exit 0
fi

phpini="/etc/php5/fpm/php.ini"

ucf /usr/share/php5/php.ini-production $phpini

exit 0