summaryrefslogtreecommitdiff
path: root/xi/sysconfig/createfiles
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-29 23:36:22 +0100
committerdavidovski <david@davidovski.xyz>2022-03-29 23:36:22 +0100
commitdf88860947686a5e6507fc5d60ff33eac1158c6b (patch)
treed1dc7f2f003b08afb6d45f7170d7a0dd353060d3 /xi/sysconfig/createfiles
parent33d239ecb3d66db2b005afbe68a7029c3f2d2ee0 (diff)
using sysvinit system bootscriptsHEADmaster
Diffstat (limited to 'xi/sysconfig/createfiles')
-rw-r--r--xi/sysconfig/createfiles31
1 files changed, 31 insertions, 0 deletions
diff --git a/xi/sysconfig/createfiles b/xi/sysconfig/createfiles
new file mode 100644
index 0000000..3d85874
--- /dev/null
+++ b/xi/sysconfig/createfiles
@@ -0,0 +1,31 @@
+########################################################################
+# 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