blob: f72141a81c9bd0199c8a4e35d3dd10720cd0a35f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_upgrade() {
if [ $(vercmp '2.2.8' $2) -ge 0 ]; then
echo '
==> New default DocumentRoot
Apache httpd uses /srv/http as default DocumentRoot.
You can still use your current DocumentRoot
==> New default user and group
Instead of "nobody" apache runs as user/group "http" by default now. You might
want to adjust your httpd.conf according to this change. But you can still
run httpd as nobody.
'
fi
}
|