#! /bin/sh
RUNLEVEL=`/sbin/runlevel`
if [ "$RUNLEVEL" = "N 4" -o "$RUNLEVEL" = "N 5" ]; then
  /usr/sbin/syslogd -f /etc/syslog.conf.x
else
  /usr/sbin/syslogd -f /etc/syslog.conf.c
fi
unset RUNLEVEL
while true; do cat /var/log/terminal | grep -v postfix >/dev/tty12; done &
