mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 21:09:28 +00:00
14 lines
194 B
Bash
14 lines
194 B
Bash
#!/bin/sh
|
|
#
|
|
# Read in /etc/sysctl.conf and set things accordingly
|
|
#
|
|
# $FreeBSD$
|
|
if [ -f /etc/sysctl.conf ]; then
|
|
3< /etc/sysctl.conf
|
|
while read 0<&3 var;
|
|
do
|
|
sysctl -w ${var}
|
|
done
|
|
3<&-
|
|
fi
|