diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2022-01-13 11:44:54 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-01-14 12:26:07 +0100 |
commit | 0233583aa45e019e088f55b4f235ca68d7d3def9 (patch) | |
tree | 83034e8be6e5d8cd67a2e4e5c4ab48035ba02026 | |
parent | 2d12ec724ea2ab4e96c9040094194ddfa4b2692b (diff) | |
download | guix-0233583aa45e019e088f55b4f235ca68d7d3def9.tar.gz |
system: vm: Change the writable image name.
* gnu/system/vm.scm (system-qemu-image/shared-store-script): Change it.
-rw-r--r-- | gnu/system/vm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 0fc9fb57f4..c2f7efa966 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -283,7 +283,7 @@ useful when FULL-BOOT? is true." #+@(operating-system-kernel-arguments os "/dev/vda1"))) (define rw-image - #~(format #f "/tmp/.~a-rw" (basename #$base-image))) + #~(format #f "/tmp/guix-image-~a" (basename #$base-image))) (define qemu-exec #~(list #+(file-append qemu "/bin/" |