From: Dragan Dosen Date: Mon, 4 Feb 2008 09:20:19 +0000 (+0000) Subject: r12: X-Git-Tag: v5.3.3+3~18 X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=php5-cn.git;a=commitdiff_plain;h=0610511d69e99cd091bb0df2699246037c617613 r12: * provjera SAPI direktorija --- diff --git a/debian/postinst b/debian/postinst index cbb3a37..50c3ec7 100755 --- a/debian/postinst +++ b/debian/postinst @@ -58,16 +58,19 @@ for php5ext in $EXTENSIONS; do # configuration files. for SAPI in apache apache2 cgi cli; do - ini_file="$PHP5DIR/$SAPI/php.ini" + if [ -d "$PHP5DIR/$SAPI" ]; then + + ini_file="$PHP5DIR/$SAPI/php.ini" - if [ -f "$ini_file" ]; then + if [ -f "$ini_file" ]; then cp_echo "CN: Removing $php5ext extension from file $ini_file" cp_check_and_sed "$php5ext_re" \ "/$php5ext_re/d" \ "$ini_file" && need_restart=1 || true - fi + fi + fi done # Check $PHP5CONFD directory.