sysctl revision 50472
1#!/bin/sh
2#
3# Read in /etc/sysctl.conf and set things accordingly
4#
5# $FreeBSD: head/etc/rc.d/sysctl 50472 1999-08-27 23:37:10Z peter $
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