sysctl revision 45096
1#!/bin/sh
2#
3# Read in /etc/sysctl.conf and set things accordingly
4#
5# $Id:$
6if [ -f /etc/sysctl.conf ]; then
7	3< /etc/sysctl.conf
8	while read 0<&3 var;
9	do
10		sysctl -w $var
11	done
12	3<&-
13fi
14