lfs-ru/bootscripts/lfs/sysconfig/createfiles

32 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-06-25 12:46:56 +03:00
########################################################################
# 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>
2022-06-25 12:46:56 +03:00
# <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 device
# pipe creates a pipe, this will ignore the <major> and
2022-06-25 12:46:56 +03:00
# <minor> fields
# <major> and <minor> are the major and minor numbers used for
2022-06-25 12:46:56 +03:00
# the device.
########################################################################
# End /etc/sysconfig/createfiles