Merge remote-tracking branch 'OE-2.1/master' into vuplus-3.0
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-core / initscripts / initscripts-1.0 / volatiles
1 # This configuration file lists filesystem objects that should get verified
2 # during startup and be created if missing.
3 #
4 # Every line must either be a comment starting with #
5 # or a definition of format:
6 # <type> <owner> <group> <mode> <path> <linksource>
7 # where the items are separated by whitespace !
8 #
9 # <type> : d|f|l : (d)irectory|(f)ile|(l)ink
10 #
11 # A linking example:
12 # l root root 0777 /var/test /tmp/testfile
13 # f root root 0644 /var/test none
14 #
15 # Understanding links:
16 # When populate-volatile is to verify/create a directory or file, it will first
17 # check it's existence. If a link is found to exist in the place of the target,
18 # the path of the target is replaced with the target the link points to.
19 # Thus, if a link is in the place to be verified, the object will be created
20 # in the place the link points to instead.
21 # This explains the order of "link before object" as in the example above, where
22 # a link will be created at /var/test pointing to /tmp/testfile and due to this
23 # link the file defined as /var/test will actually be created as /tmp/testfile.
24 d root root 0755 /var/volatile/cache none
25 d root root 1777 /var/volatile/lock none
26 d root root 0755 /var/volatile/log none
27 d root root 0755 /var/volatile/run none
28 d root root 1777 /var/volatile/tmp none
29 l root root 0755 /var/cache /var/volatile/cache
30 l root root 1777 /var/lock /var/volatile/lock
31 l root root 0755 /var/log /var/volatile/log
32 l root root 0755 /var/run /var/volatile/run
33 l root root 1777 /var/tmp /var/volatile/tmp
34 d root root 0755 /var/lock/subsys none
35 f root root 0664 /var/log/wtmp none
36 f root root 0664 /var/run/utmp none
37 l root root 0644 /etc/resolv.conf /var/run/resolv.conf
38 f root root 0644 /var/run/resolv.conf none
39