source: bootscripts-standard/clfs/init.d/sysctl@ 6dee7fa

Last change on this file since 6dee7fa was 7125722, checked in by Jim Gifford <clfs@…>, 17 years ago

Import of Bootscripts

  • 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.