blob: ed1446b90be1a6ad62d317d9023ddc76e9c2d869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo ""
echo " ==> Copy the example configuration file to your httpd configuration directory."
echo " cp /etc/webapps/webgrind/apache.example.conf /etc/httpd/conf/extra/httpd-webgrind.conf"
echo ""
echo " ==> Add the following lines to /etc/httpd/conf/httpd.conf:"
echo " # webgrind"
echo " Include conf/extra/httpd-webgrind.conf"
echo ""
/bin/true
}
|