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

Collapse All | Expand All

(-)libexec/rc/rc.d/jail (-1 / +1 lines)
Lines 446-452 jail_start() Link Here
446
	if [ $# = 0 ]; then
446
	if [ $# = 0 ]; then
447
		return
447
		return
448
	fi
448
	fi
449
	echo -n 'Starting jails:'
449
	check_startmsgs && echo -n 'Starting jails:'
450
	case $1 in
450
	case $1 in
451
	_ALL)
451
	_ALL)
452
		command=$jail_program
452
		command=$jail_program
(-)libexec/rc/rc.d/netif (-1 / +1 lines)
Lines 247-253 netif_common() Link Here
247
			_str='Reclaiming'
247
			_str='Reclaiming'
248
		;;
248
		;;
249
		esac
249
		esac
250
		echo "${_str} Network:${_ok}."
250
		check_startmsgs && echo "${_str} Network:${_ok}."
251
		case ${_func} in
251
		case ${_func} in
252
		ifn_vnetup)
252
		ifn_vnetup)
253
			# Clear _ok not to do "ifconfig $ifn"
253
			# Clear _ok not to do "ifconfig $ifn"
(-)libexec/rc/rc.d/pppoed (-1 / +1 lines)
Lines 24-30 pppoed_start() Link Here
24
	if [ -n "${pppoed_provider}" ]; then
24
	if [ -n "${pppoed_provider}" ]; then
25
			pppoed_flags="${pppoed_flags} -p ${pppoed_provider}"
25
			pppoed_flags="${pppoed_flags} -p ${pppoed_provider}"
26
	fi
26
	fi
27
	echo 'Starting pppoed'
27
	check_startmsgs && echo 'Starting pppoed'
28
	_opts=$-; set -f
28
	_opts=$-; set -f
29
	/usr/libexec/pppoed ${pppoed_flags} ${pppoed_interface}
29
	/usr/libexec/pppoed ${pppoed_flags} ${pppoed_interface}
30
	set +f; set -${_opts}
30
	set +f; set -${_opts}

Return to bug 255207