source: bootscripts/clfs/init.d/sysctl @ d66bf46

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d66bf46 was d66bf46, checked in by Jim Gifford <clfs@…>, 17 years ago

Update bootscripts to follow our standards

  • Property mode set to 100644
File size: 767 bytes
Line 
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/sysctl
4#
5# Description : File uses /etc/sysctl.conf to set kernel runtime
6#               parameters
7#
8# Authors     : Nathan Coulson (nathan@linuxfromscratch.org)
9#               Matthew Burgress (matthew@linuxfromscratch.org)
10#
11# Version     : 00.00
12#
13# Notes       :
14#
15########################################################################
16
17. /etc/sysconfig/rc
18. ${rc_functions}
19
20case "${1}" in
21        start)
22                if [ -f "/etc/sysctl.conf" ]; then
23                        boot_mesg "Setting kernel runtime parameters..."
24                        sysctl -q -p
25                        evaluate_retval
26                fi
27                ;;
28
29        status)
30                sysctl -a       
31                ;;
32
33        *)
34                echo "Usage: ${0} {start|status}"
35                exit 1
36                ;;
37esac
38
39# End $rc_base/init.d/sysctl
Note: See TracBrowser for help on using the repository browser.