1
0

createfiles 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. ########################################################################
  2. # Begin /etc/sysconfig/createfiles
  3. #
  4. # Description : Createfiles script config file
  5. #
  6. # Authors :
  7. #
  8. # Version : 00.00
  9. #
  10. # Notes : The syntax of this file is as follows:
  11. # if type is equal to "file" or "dir"
  12. # <filename> <type> <permissions> <user> <group>
  13. # if type is equal to "dev"
  14. # <filename> <type> <permissions> <user> <group> <devtype>
  15. # <major> <minor>
  16. #
  17. # <filename> is the name of the file which is to be created
  18. # <type> is either file, dir, or dev.
  19. # file creates a new file
  20. # dir creates a new directory
  21. # dev creates a new device
  22. # <devtype> is either block, char or pipe
  23. # block creates a block device
  24. # char creates a character deivce
  25. # pipe creates a pipe, this will ignore the <major> and
  26. # <minor> fields
  27. # <major> and <minor> are the major and minor numbers used for
  28. # the device.
  29. ########################################################################
  30. # End /etc/sysconfig/createfiles