#!/bin/sh # # Read in /etc/sysctl.conf and set things accordingly # # $FreeBSD: head/etc/rc.d/sysctl 50472 1999-08-27 23:37:10Z peter $ if [ -f /etc/sysctl.conf ]; then 3< /etc/sysctl.conf while read 0<&3 var; do sysctl -w ${var} done 3<&- fi