if [ -f "$ini_file" ]; then
- cp_echo "CN: Removing $php5ext extension from file $ini_file"
+ if egrep -q "$php5ext_re" "$ini_file"; then
+ cp_echo "CN: Removing $php5ext extension from file $ini_file"
+ fi
cp_check_and_sed "$php5ext_re" \
"/$php5ext_re/d" \
# Compare active PHP5 extensions with PHP4 ones, if PHP4 configuration still exists.
#
-db_fget php5-cn/extensions seen
-if [ "$RET" != "true" ]; then
-
- if [ -d "${PHP4DIR}" ] && [ -f "${PHP4DIR}/apache2/php.ini" ]; then
+if [ -d "${PHP4DIR}" ] && [ -f "${PHP4DIR}/apache2/php.ini" ]; then
phpext_re='^[[:space:]]*extension[[:space:]]*=[[:space:]]*["]{0,1}(.*)\.so["]{0,1}'
db_input critical php5-cn/extensions || true
db_go || true
fi
- fi
fi