Sophie

Sophie

distrib > Mandriva > 7.1 > i586 > by-pkgid > 041a9d407e588a35c05b1a7da37d2268 > scriptlet

mod_php3-mysql-3.0.16-3mdk.i586.rpm

POSTIN

/bin/sh
if [ `uname` = "Linux" ]; then perl="/usr/bin/perl"; fi
if [ `uname` = "SunOS" ]; then perl="/usr/local/bin/perl"; fi
$perl -pi -e 's|^;extension=mysql.so|extension=mysql.so|g' /etc/httpd/conf/php3.ini
if [ -f /var/run/httpd.pid ]; then 
   /usr/sbin/apachectl restart
fi

POSTUN

/bin/sh
if [ `uname` = "Linux" ]; then perl="/usr/bin/perl"; fi
if [ `uname` = "SunOS" ]; then perl="/usr/local/bin/perl"; fi
if [ $1 = 0 ]; then
  $perl -pi -e 's|^extension=mysql.so|;extension=mysql.so|g' /etc/httpd/conf/php3.ini
fi
if [ -f /var/run/httpd.pid ]; then 
   /usr/sbin/apachectl restart
fi