1
0
Fork 0
mirror of https://github.com/pygos/init.git synced 2024-11-05 20:27:09 +01:00
init/services/tmpfsvar.in

13 lines
295 B
Text
Raw Normal View History

description "mount /var"
type wait
target boot
before vfs
exec {
"@SBINPATH@/mount" -t tmpfs none /var
"@BINPATH@/mkdir" /var/log -m 0755
"@BINPATH@/mkdir" /var/spool -m 0755
"@BINPATH@/mkdir" /var/lib -m 0755
"@BINPATH@/mkdir" /var/tmp -m 0755
"@SCRIPTDIR@/overlay.sh" var_lib /var/lib
}