source: bootscripts/lfs/init.d/sysctl@ 51f09a8

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 51f09a8 was 163a6701, checked in by Jim Gifford <clfs@…>, 19 years ago

r720@server (orig r718): jim | 2005-11-18 08:06:26 -0800
Added bootscripts to cross-lfs svn

  • Property mode set to 100644
File size: 767 bytes
RevLine 
[163a6701]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.