Current Path : /scripts/ |
Current File : //scripts/after_apache_make_install |
#!/bin/sh echo -e "Checking for CloudFlare..." rpm -q ul-mod_cloudflare && ( \ echo -e "Detected CloudFlare installation, reinstalling module..." && \ yum -y reinstall ul-mod_cloudflare && \ echo -e "Done" || ( \ echo -e "Failed" && exit 1 \ ) \ ) exit 0