Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 484796 | Differences between
and this patch

Collapse All | Expand All

(-)a/init.d/sysctl.Linux.in (-2 / +12 lines)
Lines 14-19 start() Link Here
14
	yesno $rc_verbose || quiet=-q
14
	yesno $rc_verbose || quiet=-q
15
15
16
	ebegin "Configuring kernel parameters"
16
	ebegin "Configuring kernel parameters"
17
	sysctl ${quiet} --system
17
	set --
18
	for i in /run/sysctl.d/*.conf \
19
			/etc/sysctl.d/*.conf \
20
			/usr/local/lib/sysctl.d/*.conf \
21
			/usr/lib/sysctl.d/*.conf \
22
			/lib/sysctl.d/*.conf \
23
			/etc/sysctl.conf; do
24
		if [ -e "$i" ]; then
25
			set -- "$@" "$i"
26
		fi
27
	done
28
	sysctl ${quiet} -p "$@"
18
	eend $? "Unable to configure some kernel parameters"
29
	eend $? "Unable to configure some kernel parameters"
19
}
30
}
20
- 

Return to bug 484796