mirror of
https://github.com/pygos/init-scripts.git
synced 2024-11-14 17:07:11 +01:00
12 lines
181 B
Text
12 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
|
||
|
}
|