sysctl revision 50472
145096Simp#!/bin/sh
245096Simp#
345096Simp# Read in /etc/sysctl.conf and set things accordingly
445096Simp#
550472Speter# $FreeBSD: head/etc/rc.d/sysctl 50472 1999-08-27 23:37:10Z peter $
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