#!/bin/sh
#RC:AFTER remotefs

#
# start system logging and name service (named needs to start before syslogd
# if you don't have a /etc/resolv.conf)
#
if [ "X${syslogd_enable}" = X"YES" ]; then
	# Transitional symlink (for the next couple of years :) until all
	# binaries had a chance to move towards /var/run/log.
	if [ ! -h /dev/log ] ; then
		# might complain for r/o root f/s
		ln -sf /var/run/log /dev/log
	fi

	rm -f /var/run/log
	echo -n ' syslogd';		syslogd ${syslogd_flags}
fi
