2008-06-03 22:51:14 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# Begin /etc/init.d/sysctl
|
|
|
|
|
|
|
|
### BEGIN INIT INFO
|
|
|
|
# Provides: sysctl
|
2008-08-31 07:24:27 +01:00
|
|
|
# Required-Start: mountkernfs
|
2008-06-03 22:51:14 +01:00
|
|
|
# Should-Start:
|
|
|
|
# Required-Stop:
|
|
|
|
# Should-Stop:
|
2008-08-31 07:24:27 +01:00
|
|
|
# Default-Start: S
|
2008-06-03 22:51:14 +01:00
|
|
|
# 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-Default-Start: S05
|
|
|
|
# X-LFS-Default-Stop:
|
|
|
|
# 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
|