sysctl revision 64446
1#!/bin/sh
2#
3# Read in /etc/sysctl.conf and set things accordingly
4#
5# $FreeBSD: head/etc/rc.d/sysctl 64446 2000-08-09 02:03:30Z chris $
6
7if [ -f /etc/sysctl.conf ]; then
8	while read var comments
9	do
10		case ${var} in
11		\#*|'')
12			;;
13		*)
14			sysctl -w ${var}
15			;;
16		esac
17	done < /etc/sysctl.conf
18fi
19