#!/bin/sh
#
# Run the sysctl command if we have a configuration file
#
CFGFILE=/etc/sysctl.conf

[ -s $CFGFILE ] && sysctl -q -p $CFGFILE
