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

Collapse All | Expand All

(-)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 (-8 / +14 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
86
		echo -n "Starting PPP profile:"
87
	for _p in $_ppp_profile; do
87
88
		echo -n " $_p"
88
		for _p in $_ppp_profile; do
89
		ppp_start_profile $_p
89
			echo -n " $_p"
90
	done
90
			ppp_start_profile $_p
91
91
		done
92
	echo "."
92
93
		echo "."
94
	else
95
		for _p in $_ppp_profile; do
96
			ppp_start_profile $_p
97
		done
98
	fi
93
}
99
}
94
100
95
ppp_poststart()
101
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 (-8 / +14 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
94
		echo -n "Starting RFCOMM PPP profile:"
95
	for _p in ${_profile} ; do
95
96
		echo -n " ${_p}"
96
		for _p in ${_profile} ; do
97
		rfcomm_pppd_server_start_profile ${_p}
97
			echo -n " ${_p}"
98
	done
98
			rfcomm_pppd_server_start_profile ${_p}
99
99
		done
100
	echo "."
100
101
		echo "."
102
	else
103
		for _p in ${_profile} ; do
104
			rfcomm_pppd_server_start_profile ${_p}
105
		done
106
	fi
101
}
107
}
102
108
103
rfcomm_pppd_server_stop()
109
rfcomm_pppd_server_stop()

Return to bug 255207