source: bootscripts-standard/bootscripts/clfs/init.d/sysctl @ 2167cfe

Last change on this file since 2167cfe was 2167cfe, checked in by William Harrington <kb0iic@…>, 10 years ago

bootscripts are the scripts used for the sysvinit book.

  • Property mode set to 100644
File size: 769 bytes
Line 
1#!/bin/bash
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.