diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-05-23 10:14:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-05-23 10:21:02 +0200 |
commit | 353df40102b209a06376044af946a28c2594377b (patch) | |
tree | 3f3a476551c62fce08728ed022fb9c7680c02447 /gnu/build/vm.scm | |
parent | d282388789a21ae031035e9fd8e94a72463d0c96 (diff) | |
download | guix-353df40102b209a06376044af946a28c2594377b.tar guix-353df40102b209a06376044af946a28c2594377b.tar.gz |
vm: Print the label and UUID of partitions.
* gnu/build/vm.scm (create-ext-file-system): Print the label and UUID.
Diffstat (limited to 'gnu/build/vm.scm')
-rw-r--r-- | gnu/build/vm.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm index 527b4c495d..989b74f4f1 100644 --- a/gnu/build/vm.scm +++ b/gnu/build/vm.scm @@ -265,7 +265,8 @@ actual /dev name based on DEVICE." #:key label uuid) "Create an ext-family file system of TYPE on PARTITION. If LABEL is true, use that as the volume name. If UUID is true, use it as the partition UUID." - (format #t "creating ~a partition...\n" type) + (format #t "creating ~a partition... ~@[label: ~s~] ~@[uuid: ~s~]\n" + type label (and uuid (uuid->string uuid))) (apply invoke (string-append "mkfs." type) "-F" partition `(,@(if label |