core/apache/apache.install

17 lines
439 B
Plaintext
Raw Normal View History

post_install() {
2014-05-13 03:40:43 +08:00
if type -P systemd-tmpfiles &> /dev/null; then
systemd-tmpfiles --create apache.conf
fi
}
post_upgrade() {
2014-05-13 03:40:43 +08:00
if type -P systemd-tmpfiles &> /dev/null; then
systemd-tmpfiles --create apache.conf
fi
if [[ $2 == 2\.2\.* ]]; then
# it is a major upgrade, show a useful link to upgrade instructions
2014-05-13 03:40:43 +08:00
echo ' Check Apache upgrade instructions: https://httpd.apache.org/docs/2.4/upgrading.html'
fi
}