# If you don't have a /etc/rc.d/rc.syslog, you can get a sample
# one here (it'll use syslog-ng instead of syslogd if you have it).
# Set USE_KLOG=0 in the script if you don't use klogd (like if you
# use syslog-ng and it reads /proc/kmsg directly).
cd /etc/rc.d
wget -N http://englanders.cc/pub/linux/misc/rc.syslog
chmod 755 rc.syslog
## Slackware 8.1+ calls rc.syslog out of rc.inet2. Earlier versions start
## syslogd and klogd directly. Check rc.M to make sure it would even call
## rc.syslog, if not, comment out what's there (if you want to use rc.syslog)
## and replace it with something like this:
#if [ -x /etc/rc.d/rc.syslog ]; then
# /etc/rc.d/rc.syslog start
#fi