source: bootscripts/lfs/init.d/sysctl@ 5bc19fc

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 5bc19fc was 0cda898, checked in by Bruce Dubbs <bdubbs@…>, 13 years ago

Rewrite bootscripts and Chaper 7

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9574 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#!/bin/sh
2########################################################################
3# Begin 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# Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
11#
12# Version : LFS 7.0
13#
14########################################################################
15
16### BEGIN INIT INFO
17# Provides: sysctl
18# Required-Start: mountkernfs
19# Should-Start:
20# Required-Stop:
21# Should-Stop:
22# Default-Start: S
23# Default-Stop:
24# Short-Description: Makes changes to the proc filesystem
25# Description: Makes changes to the proc filesystem as defined in
26# /etc/sysctl.conf. See 'man sysctl(8)'.
27# X-LFS-Provided-By: LFS
28### END INIT INFO
29
30. /lib/boot/functions
31
32case "${1}" in
33 start)
34 if [ -f "/etc/sysctl.conf" ]; then
35 boot_mesg "Setting kernel runtime parameters..."
36 sysctl -q -p
37 evaluate_retval
38 fi
39 ;;
40
41 status)
42 sysctl -a
43 ;;
44
45 *)
46 echo "Usage: ${0} {start|status}"
47 exit 1
48 ;;
49esac
50
51# End sysctl
Note: See TracBrowser for help on using the repository browser.