blob: c88a9147b51fa6e65bc5d0955bd22da3af611bec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
description "mount /run"
type wait
target boot
before vfs
after tmpfsvar
exec {
"@SBINPATH@/mount" -t tmpfs none /run
"@BINPATH@/mkdir" /run/lock -m 0755
"@BINPATH@/ln" -s /run /var/run
"@BINPATH@/ln" -s /run/lock /var/lock
}
|