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/local (-1 / +1 lines)
Lines 17-23 stop_cmd="local_stop" Link Here
17
17
18
local_start()
18
local_start()
19
{
19
{
20
	if [ -f /etc/rc.local ]; then
20
	if [ -f /etc/rc.local ] && check_startmsgs; then
21
		echo -n 'Starting local daemons:'
21
		echo -n 'Starting local daemons:'
22
		. /etc/rc.local
22
		. /etc/rc.local
23
		echo '.'
23
		echo '.'
(-)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/ppp (-6 / +8 lines)
Lines 82-95 ppp_start() Link Here
82
		_ppp_profile=$ppp_profile
82
		_ppp_profile=$ppp_profile
83
	fi
83
	fi
84
84
85
	echo -n "Starting PPP profile:"
85
	if check_startmsgs; then
86
		echo -n "Starting PPP profile:"
86
87
87
	for _p in $_ppp_profile; do
88
		for _p in $_ppp_profile; do
88
		echo -n " $_p"
89
			echo -n " $_p"
89
		ppp_start_profile $_p
90
			ppp_start_profile $_p
90
	done
91
		done
91
92
92
	echo "."
93
		echo "."
94
	fi
93
}
95
}
94
96
95
ppp_poststart()
97
ppp_poststart()
(-)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}
(-)libexec/rc/rc.d/rfcomm_pppd_server (-6 / +8 lines)
Lines 90-103 rfcomm_pppd_server_start() Link Here
90
		_profile=${rfcomm_pppd_server_profile}
90
		_profile=${rfcomm_pppd_server_profile}
91
	fi
91
	fi
92
92
93
	echo -n "Starting RFCOMM PPP profile:"
93
	if check_startmsgs; then
94
		echo -n "Starting RFCOMM PPP profile:"
94
95
95
	for _p in ${_profile} ; do
96
		for _p in ${_profile} ; do
96
		echo -n " ${_p}"
97
			echo -n " ${_p}"
97
		rfcomm_pppd_server_start_profile ${_p}
98
			rfcomm_pppd_server_start_profile ${_p}
98
	done
99
		done
99
100
100
	echo "."
101
		echo "."
102
	fi
101
}
103
}
102
104
103
rfcomm_pppd_server_stop()
105
rfcomm_pppd_server_stop()

Return to bug 255207