summaryrefslogtreecommitdiffstats
path: root/etc/rc.sysctl
blob: 8b1f4473b4b13f6dc5a141e87d06c747cfa52b71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#
# Read in /etc/sysctl.conf and set things accordingly
#
# $Id:$
if [ -f /etc/sysctl.conf ]; then
	3< /etc/sysctl.conf
	while read 0<&3 var;
	do
		sysctl -w $var
	done
	3<&-
fi
OpenPOWER on IntegriCloud