sysctl revision 50357
145096Simp#!/bin/sh
245096Simp#
345096Simp# Read in /etc/sysctl.conf and set things accordingly
445096Simp#
550357Ssheldonh# $Id: rc.sysctl,v 1.1 1999/03/28 20:36:03 imp Exp $
645096Simpif [ -f /etc/sysctl.conf ]; then
745096Simp	3< /etc/sysctl.conf
845096Simp	while read 0<&3 var;
945096Simp	do
1050357Ssheldonh		sysctl -w ${var}
1145096Simp	done
1245096Simp	3<&-
1345096Simpfi
14