Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 169422
Collapse All | Expand All

(-)ypbind.org (-2 / +3 lines)
Lines 12-18 Link Here
12
	ebegin "Starting ypbind"
12
	ebegin "Starting ypbind"
13
	if [ -n "${YPBIND_OPTS}" ]; then YOPTS="-- ${YPBIND_OPTS}"; fi	
13
	if [ -n "${YPBIND_OPTS}" ]; then YOPTS="-- ${YPBIND_OPTS}"; fi	
14
	start-stop-daemon --start --quiet --exec /usr/sbin/ypbind ${YOPTS}
14
	start-stop-daemon --start --quiet --exec /usr/sbin/ypbind ${YOPTS}
15
	if [ -n "$?" ] ; then
15
	ret=$?
16
	if [ $ret -eq 0 ] ; then
16
		notfound=1
17
		notfound=1
17
		for i in 0 1 2 3 4 5 6 7 8 9
18
		for i in 0 1 2 3 4 5 6 7 8 9
18
		do
19
		do
Lines 25-31 Link Here
25
			eend 0
26
			eend 0
26
		fi
27
		fi
27
	else
28
	else
28
		eend $?
29
		eend $ret
29
	fi
30
	fi
30
}
31
}
31
32

Return to bug 169422