r12:
authorDragan Dosen <ddosen@ffzg.hr>
Mon, 4 Feb 2008 09:20:19 +0000 (09:20 +0000)
committerDragan Dosen <ddosen@ffzg.hr>
Mon, 4 Feb 2008 09:20:19 +0000 (09:20 +0000)
  * provjera SAPI direktorija

debian/postinst

index cbb3a37..50c3ec7 100755 (executable)
@@ -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.