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

(-)bootstrap.sh (-7 / +9 lines)
Lines 16-34 Link Here
16
# sanity check
16
# sanity check
17
[[ -e /etc/profile ]] && . /etc/profile
17
[[ -e /etc/profile ]] && . /etc/profile
18
18
19
if [[ -e /etc/init.d/functions.sh ]] ; then
19
if [[ -e /lib/gentoo/functions.sh ]] ; then
20
	source /lib/gentoo/functions.sh
21
	elif [[ -e /etc/init.d/functions.sh ]] ; then
20
	source /etc/init.d/functions.sh
22
	source /etc/init.d/functions.sh
21
22
	# Use our own custom script, else logger cause things to
23
	# 'freeze' if we do not have a system logger running
24
	esyslog() {
25
		:
26
	}
27
else
23
else
28
	eerror() { echo "!!! $*"; }
24
	eerror() { echo "!!! $*"; }
29
	einfo() { echo "* $*"; }
25
	einfo() { echo "* $*"; }
30
fi
26
fi
31
27
28
# Use our own custom script, else logger cause things to
29
# 'freeze' if we do not have a system logger running
30
esyslog() {
31
	:
32
}
33
32
show_status() {
34
show_status() {
33
	local num=$1
35
	local num=$1
34
	shift
36
	shift

Return to bug 504376