blob: 85f69d3a308c16b1ba335759fa0f33e1a40abb36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
# echo 'Creating /var/log/messages symlink to improve compatibility...'
# ln -sf messages.log /var/log/messages
cat << EOF
==> Use /etc/apparmor/logprof.conf to change system log file
==> configuration if you have a not-standard syslog-ng.conf.
EOF
}
post_upgrade() {
post_install $1
}
|