bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone

Blame tests/p_mod_python/0-install_mod_python.sh

Athmane Madjoudj 23f349
#!/bin/bash
Athmane Madjoudj 23f349
# Author: Athmane Madjoudj <athmanem@gmail.com>
Athmane Madjoudj 23f349
Athmane Madjoudj 23f349
if (t_GetPkgRel basesystem | grep -q el5)
Athmane Madjoudj 23f349
then
Athmane Madjoudj 23f349
    t_InstallPackage mod_python
Athmane Madjoudj 23f349
    service httpd restart
Athmane Madjoudj 23f349
else 
Athmane Madjoudj 23f349
    echo "Skipped on CentOS 6"
Athmane Madjoudj 23f349
fi
Athmane Madjoudj 23f349
Athmane Madjoudj 23f349