diff options
author | Raphael Geissert <geissert@debian.org> | 2010-07-31 15:53:12 -0400 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2010-10-21 08:52:50 +0200 |
commit | 3c7bc2c87fd842df1df75783e014029adae00433 (patch) | |
tree | 07348580ede71c8573ac7bf070b2d9daca51439a /debian/php5-fpm.postinst | |
parent | 931ef23e1a9a93ad1d923f3fda90e94c32b669f2 (diff) | |
download | php-debian/5.3.3-1.tar.gz |
Imported Debian patch 5.3.3-1debian/5.3.3-1
Diffstat (limited to 'debian/php5-fpm.postinst')
-rw-r--r-- | debian/php5-fpm.postinst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/php5-fpm.postinst b/debian/php5-fpm.postinst new file mode 100644 index 000000000..19246bf1c --- /dev/null +++ b/debian/php5-fpm.postinst @@ -0,0 +1,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 |