diff options
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 |