summaryrefslogtreecommitdiffstats
path: root/etc/rc.sysctl
blob: 1a5c48eff4615a5d57174c96283dbc281c06076d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#
# Read in /etc/sysctl.conf and set things accordingly
#
# $FreeBSD$
if [ -f /etc/sysctl.conf ]; then
	sed '
		/^[  	]*#/d
		/^[ 	]*$/d
		s/#.*$//g
	' /etc/sysctl.conf |
	while read var
	do
		sysctl -w ${var}
	done
fi
OpenPOWER on IntegriCloud