summaryrefslogtreecommitdiff
path: root/init.d.Linux/sysctl
blob: a445835a3b49668963d92134f77349d9fbae678c (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 $?
}

# vim: set ts=4 :