blob: e6fac87a866f5e2385f7e558860db2ace34defa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
_print_message() {
cat <<'EOF'
IMPORTANT INFORMATION:
This package installs libmodsecurity in the v3.xx line.
It only functions alongside a connecter for the specific
webserver you intend to use. This could, in theory, be either
- https://github.com/SpiderLabs/ModSecurity-nginx
=> Extra package nginx-mod-modsecurity
or
- https://github.com/SpiderLabs/ModSecurity-apache
=> AUR package apache-modsecurity-git
WARNING: the apache connector is not production ready, and is
in fact BROKEN
(see https://github.com/owasp-modsecurity/ModSecurity-apache/issues/89 )
EOF
}
post_install() {
_print_message
}
post_upgrade() {
_print_message
}
|