#!/bin/sh # Begin /etc/init.d/sysctl ### BEGIN INIT INFO # Provides: sysctl # Required-Start: mountkernfs # Should-Start: # Required-Stop: # Should-Stop: # Default-Start: S # Default-Stop: # Short-Description: Makes changes to the proc filesystem # Description: Makes changes to the proc filesystem as defined in # /etc/sysctl.conf. See 'man sysctl(8)'. # X-LFS-Provided-By: LFS ### END INIT INFO . /lib/lsb/init-functions case "${1}" in start) if [ -f "/etc/sysctl.conf" ]; then message="Setting kernel runtime parameters..." sysctl -q -p evaluate_retval standard fi ;; status) sysctl -a ;; *) echo "Usage: ${0} {start|status}" exit 1 ;; esac # End /etc/init.d/sysctl