View | Details | Raw Unified | Return to bug 235085 | Differences between
and this patch

Collapse All | Expand All

(-)libexec/rc/rc.conf (+1 lines)
Lines 26-31 Link Here
26
#rc_debug="NO"		# Set to YES to enable debugging output from rc.d
26
#rc_debug="NO"		# Set to YES to enable debugging output from rc.d
27
rc_info="NO"		# Enables display of informational messages at boot.
27
rc_info="NO"		# Enables display of informational messages at boot.
28
rc_startmsgs="YES" 	# Show "Starting foo:" messages at boot
28
rc_startmsgs="YES" 	# Show "Starting foo:" messages at boot
29
sysctl_verbose="NO"	# Print changes made by /etc/sysctl.conf.
29
rcshutdown_timeout="90" # Seconds to wait before terminating rc.shutdown
30
rcshutdown_timeout="90" # Seconds to wait before terminating rc.shutdown
30
early_late_divider="FILESYSTEMS"	# Script that separates early/late
31
early_late_divider="FILESYSTEMS"	# Script that separates early/late
31
			# stages of the boot process.  Make sure you know
32
			# stages of the boot process.  Make sure you know
(-)libexec/rc/rc.d/sysctl (-1 / +5 lines)
Lines 29-35 Link Here
29
29
30
	for _f in /etc/sysctl.conf /etc/sysctl.conf.local; do
30
	for _f in /etc/sysctl.conf /etc/sysctl.conf.local; do
31
		if [ -r ${_f} ]; then
31
		if [ -r ${_f} ]; then
32
			${command} ${command_args} ${_f} > /dev/null
32
			if checkyesno sysctl_verbose; then
33
				${command} ${command_args} ${_f}
34
			else
35
				${command} ${command_args} ${_f} > /dev/null
36
			fi
33
		fi
37
		fi
34
	done
38
	done
35
}
39
}
(-)share/man/man5/rc.conf.5 (+13 lines)
Lines 135-140 Link Here
135
show
135
show
136
.Dq Starting foo:
136
.Dq Starting foo:
137
when faststart is used (e.g., at boot time).
137
when faststart is used (e.g., at boot time).
138
.It Va sysctl_verbose
139
.Pq Vt bool
140
If set to
141
.Dq Li YES ,
142
do not suppress the output from
143
.Pa /etc/sysctl.conf .
138
.It Va early_late_divider
144
.It Va early_late_divider
139
.Pq Vt str
145
.Pq Vt str
140
The name of the script that should be used as the
146
The name of the script that should be used as the
Lines 4383-4388 Link Here
4383
Defines the total number of seconds to wait for link to become usable,
4389
Defines the total number of seconds to wait for link to become usable,
4384
polled at a 1-second interval.
4390
polled at a 1-second interval.
4385
The default is 30.
4391
The default is 30.
4392
.It Va sysctl_verbose
4393
.Pq Vt bool
4394
If set to
4395
.Dq Li YES ,
4396
do not suppress the output from
4397
.Pa /etc/sysctl.conf
4398
at boot.
4386
.It Va rctl_enable
4399
.It Va rctl_enable
4387
.Pq Vt bool
4400
.Pq Vt bool
4388
If set to
4401
If set to

Return to bug 235085