mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-05-05 20:25:03 +00:00
utils: %rosenthal-base-file-systems: Mount /run and /var/run as tmpfs.
* rosenthal/utils/counter-stop.scm (%rosenthal-base-file-systems): Mount /run and /var/run as tmpfs.
This commit is contained in:
parent
43c39fa355
commit
1ebbc475b9
@ -112,6 +112,20 @@
|
|||||||
(type "tmpfs")
|
(type "tmpfs")
|
||||||
(check? #f))
|
(check? #f))
|
||||||
|
|
||||||
|
(file-system
|
||||||
|
(device "none")
|
||||||
|
(mount-point "/run")
|
||||||
|
(type "tmpfs")
|
||||||
|
(needed-for-boot? #t)
|
||||||
|
(check? #f))
|
||||||
|
|
||||||
|
(file-system
|
||||||
|
(device "none")
|
||||||
|
(mount-point "/var/run")
|
||||||
|
(type "tmpfs")
|
||||||
|
(needed-for-boot? #t)
|
||||||
|
(check? #f))
|
||||||
|
|
||||||
(delete %debug-file-system
|
(delete %debug-file-system
|
||||||
%base-file-systems)))
|
%base-file-systems)))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user