file-systems: The 'device' field can be a UUID (bytevector).
Previously a wrong-type-arg error would be raised when a file system with a UUID (bytevector) field was encountered. * gnu/system.scm (other-file-system-services)[device-mappings]: Check whether FS's device is a string.
This commit is contained in:
parent
be21979d85
commit
ab64483f64
1 changed files with 8 additions and 5 deletions
|
@ -192,11 +192,14 @@ (define file-systems
|
||||||
(operating-system-file-systems os)))
|
(operating-system-file-systems os)))
|
||||||
|
|
||||||
(define (device-mappings fs)
|
(define (device-mappings fs)
|
||||||
|
(let ((device (file-system-device fs)))
|
||||||
|
(if (string? device)
|
||||||
(filter (lambda (md)
|
(filter (lambda (md)
|
||||||
(string=? (string-append "/dev/mapper/"
|
(string=? (string-append "/dev/mapper/"
|
||||||
(mapped-device-target md))
|
(mapped-device-target md))
|
||||||
(file-system-device fs)))
|
device))
|
||||||
(operating-system-mapped-devices os)))
|
(operating-system-mapped-devices os))
|
||||||
|
'())))
|
||||||
|
|
||||||
(define (add-dependencies fs)
|
(define (add-dependencies fs)
|
||||||
;; Add the dependencies due to device mappings to FS.
|
;; Add the dependencies due to device mappings to FS.
|
||||||
|
|
Loading…
Reference in a new issue