diff options
Diffstat (limited to 'testing/syslog-ng/syslog-ng.post-install')
-rw-r--r-- | testing/syslog-ng/syslog-ng.post-install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/syslog-ng/syslog-ng.post-install b/testing/syslog-ng/syslog-ng.post-install new file mode 100644 index 000000000..893924674 --- /dev/null +++ b/testing/syslog-ng/syslog-ng.post-install @@ -0,0 +1,9 @@ +#!/bin/sh + +echo "please remove other syslog services and activate syslog-ng with:" +echo "rc-service syslog-ng start" +echo "rc-update add syslog-ng boot" +[ ! -f /var/log/auth.log ] && touch /var/log/auth.log +[ ! -f /var/log/error.log ] && touch /var/log/error.log +[ ! -f /var/log/mail.log ] && touch /var/log/mail.log +[ ! -f /var/log/kern.log ] && touch /var/log/kern.log |