#!/bin/bash
. /etc/systemconfig

if [ $SystemType != Frontend_only ] && [ $SystemType != Slave_backend ] ; then

mysql mythconverg <<EOF
delete from videotypes where extension='php';
insert into videotypes(extension,f_ignore) values('php','1');
EOF

else
    exit 0
fi