blob: 240c95761ec6350932290589d90254c1f1beb548 (
plain)
1
2
3
4
5
|
if [ ! -r etc/httpd/mod_perl.conf ]; then
cat etc/httpd/mod_perl.conf.example > etc/httpd/mod_perl.conf
elif [ "$(cat etc/httpd/mod_perl.conf 2> /dev/null)" = "" ]; then
cat etc/httpd/mod_perl.conf.example > etc/httpd/mod_perl.conf
fi
|