]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.sysctl
This commit was generated by cvs2svn to compensate for changes in r60940,
[FreeBSD/FreeBSD.git] / etc / rc.sysctl
1 #!/bin/sh
2 #
3 # Read in /etc/sysctl.conf and set things accordingly
4 #
5 # $FreeBSD$
6 if [ -f /etc/sysctl.conf ]; then
7         sed '
8                 /^[     ]*#/d
9                 /^[     ]*$/d
10                 s/#.*$//g
11         ' /etc/sysctl.conf |
12         while read var
13         do
14                 sysctl -w ${var}
15         done
16 fi