mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
vm: Honor the VOLATILE? parameter when producing a system disk image.
* gnu/system/vm.scm (system-disk-image): Honor the VOLATILE? parameter instead of hard coding its value to #t. Reported-by: Jelle Licht <jlicht@fsfe.org>
This commit is contained in:
parent
c09903acae
commit
67ed544212
1 changed files with 1 additions and 1 deletions
|
@ -678,7 +678,7 @@ (define file-systems-to-keep
|
||||||
(initrd (lambda (file-systems . rest)
|
(initrd (lambda (file-systems . rest)
|
||||||
(apply (operating-system-initrd os)
|
(apply (operating-system-initrd os)
|
||||||
file-systems
|
file-systems
|
||||||
#:volatile-root? #t
|
#:volatile-root? volatile?
|
||||||
rest)))
|
rest)))
|
||||||
|
|
||||||
(bootloader (if (string=? "iso9660" file-system-type)
|
(bootloader (if (string=? "iso9660" file-system-type)
|
||||||
|
|
Loading…
Reference in a new issue