View | Details | Raw Unified | Return to bug 196546
Collapse All | Expand All

(-)src/etc/rc.d/syslogd (-1 / +4 lines)
Lines 40-48 Link Here
40
	#	If running named(8) or ntpd(8) chrooted, added appropriate
40
	#	If running named(8) or ntpd(8) chrooted, added appropriate
41
	#	syslog socket to list of sockets to watch.
41
	#	syslog socket to list of sockets to watch.
42
	#
42
	#
43
	for _l in $altlog_proglist; do
43
	for _l in $syslogd_altlog_proglist; do
44
		eval _ldir=\$${_l}_chrootdir
44
		eval _ldir=\$${_l}_chrootdir
45
		if checkyesno ${_l}_enable && [ -n "$_ldir" ]; then
45
		if checkyesno ${_l}_enable && [ -n "$_ldir" ]; then
46
			if [ ! -d ${_ldir}/var/run ]; then
47
				mkdir -p ${_ldir}/var/run
48
			fi
46
			echo "${_ldir}/var/run/log" >> $sockfile
49
			echo "${_ldir}/var/run/log" >> $sockfile
47
		fi
50
		fi
48
	done
51
	done
(-)src/etc/defaults/rc.conf (+1 lines)
Lines 263-268 Link Here
263
syslogd_enable="YES"		# Run syslog daemon (or NO).
263
syslogd_enable="YES"		# Run syslog daemon (or NO).
264
syslogd_program="/usr/sbin/syslogd" # path to syslogd, if you want a different one.
264
syslogd_program="/usr/sbin/syslogd" # path to syslogd, if you want a different one.
265
syslogd_flags="-s"		# Flags to syslogd (if enabled).
265
syslogd_flags="-s"		# Flags to syslogd (if enabled).
266
syslogd_altlog_proglist="named"	# Check vor chrooted daemons and place additional socket
266
inetd_enable="NO"		# Run the network daemon dispatcher (YES/NO).
267
inetd_enable="NO"		# Run the network daemon dispatcher (YES/NO).
267
inetd_program="/usr/sbin/inetd"	# path to inetd, if you want a different one.
268
inetd_program="/usr/sbin/inetd"	# path to inetd, if you want a different one.
268
inetd_flags="-wW -C 60"		# Optional flags to inetd
269
inetd_flags="-wW -C 60"		# Optional flags to inetd

Return to bug 196546