blob: 1e1b30c253e744669c4a1234191e04e1c40af4d3 (
plain)
1
2
3
4
5
6
7
8
9
|
## arg 1: the new package version
post_install() {
echo "The owasp-core-ruleset package has been installed to /etc/httpd/conf/owasp-modsecurity-crs"
echo "Chowning to http user and group"
chown -R http:http /etc/httpd/conf/owasp-modsecurity-crs
echo "Now you need to also include extra/mod_security_recommended.conf somewhere in your apache config"
}
|