#! /bin/sh

# soft-settings: Proc tweaking script

. init-script-lib

if [ "$1" != "start" ]; then exit 0; fi

if [ ! -e /proc/1 ]; then 
    important mount procfs /proc -t proc
fi

fatal sysctl -p

exit 0
