#!/usr/bin/env bash
checkphp5=$(ls cgi-bin|grep 'php5.ini$')
checkphp4=$(ls cgi-bin|grep 'php.ini$')
if [ "X$checkphp5" != "X" ];then
    echo "updated"
    exit 0
fi
if [ "X$checkphp4" != "X" ];then
    echo "php4"
fi

