mirror of
https://github.com/pygos/init.git
synced 2024-11-05 12:17:10 +01:00
38ad6f1b2f
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
11 lines
230 B
Text
11 lines
230 B
Text
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
|
|
}
|