mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-07-12 23:34:34 +01:00
Move network services to /lib/services. Move init-functions to /lib/lsb. Make /lib/lsb a symlink to /lib/services. Create convenience symlink /etc/init.d->/etc/rc.d/init.d Add help and man pages to ifup/ifdown. Append /run/var/bootlog to /var/log/boot.log at the end of the boot sequence. Add capability to step through the boot scripts at boot time. Optionally allow environment variables in sysconfig directory's console, network, and clock files to be placed in rc.site. Add an optional FASTBOOT parameter to set /fastboot when rebooting. Remove a minor warning message from udev that is triggered by the udev_retry boot script. Add SKIPTMPCLEAN as an optional parameter to skip cleaning /tmp at boot time. Add a page to Chapter 7 documenting rc.site. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9597 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
########################################################################
|
|
# Begin /etc/sysconfig/createfiles
|
|
#
|
|
# Description : Createfiles script config file
|
|
#
|
|
# Authors :
|
|
#
|
|
# Version : 00.00
|
|
#
|
|
# Notes : The syntax of this file is as follows:
|
|
# if type is equal to "file" or "dir"
|
|
# <filename> <type> <permissions> <user> <group>
|
|
# if type is equal to "dev"
|
|
# <filename> <type> <permissions> <user> <group> <devtype>
|
|
# <major> <minor>
|
|
#
|
|
# <filename> is the name of the file which is to be created
|
|
# <type> is either file, dir, or dev.
|
|
# file creates a new file
|
|
# dir creates a new directory
|
|
# dev creates a new device
|
|
# <devtype> is either block, char or pipe
|
|
# block creates a block device
|
|
# char creates a character deivce
|
|
# pipe creates a pipe, this will ignore the <major> and
|
|
# <minor> fields
|
|
# <major> and <minor> are the major and minor numbers used for
|
|
# the device.
|
|
########################################################################
|
|
|
|
# End /etc/sysconfig/createfiles
|