summaryrefslogtreecommitdiff
path: root/init.d.Linux/sysctl
blob: 495f8ae5690ded813e29343a6ac9b3b776860c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved

depend()
{
	use hostname
	before bootmisc logger
}

start()
{
	[ "${RC_SYS}" = "VPS" ] && return 0
	[ -e /etc/sysctl.conf ] || return 0
	ebegin "Configuring kernel parameters"
	sysctl -p /etc/sysctl.conf >/dev/null
	eend $?
}