freebsd_amp_hwpstate/etc/rc.d/sysctl

19 lines
242 B
Plaintext
Raw Normal View History

#!/bin/sh
#
# Read in /etc/sysctl.conf and set things accordingly
#
1999-08-27 23:37:10 +00:00
# $FreeBSD$
if [ -f /etc/sysctl.conf ]; then
while read var comments
do
case ${var} in
\#*|'')
;;
*)
sysctl -w ${var}
;;
esac
done < /etc/sysctl.conf
fi