mirror of
https://github.com/pygos/init.git
synced 2024-11-05 12:17:10 +01:00
a3437967a2
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
11 lines
181 B
Text
11 lines
181 B
Text
description "mount /run"
|
|
type wait
|
|
target boot
|
|
before vfs
|
|
after tmpfsvar
|
|
exec {
|
|
mount -t tmpfs none /run
|
|
mkdir /run/lock -m 0755
|
|
ln -s /run /var/run
|
|
ln -s /run/lock /var/lock
|
|
}
|