#!/bin/bash

# sourcing our current rc.conf requires this to be a bash script
. /usr/lib/rc/functions

case "$1" in
    start)
        stat_busy "Loading sysctl settings"
        sysctl --system || stat_die sysctl
        add_daemon sysctl
        stat_done sysctl
        ;;
    *)
        echo "usage: $0 {start}"
        exit 1
        ;;
esac
