Hi! David Craven <da...@craven.ch> skribis:
> * gnu/build/file-systems.scm (check-file-system): Use file-system type > specific checker. > (check-ext2-file-system): New variable. [...] > +(define (check-ext2-file-system device) > + "Return the health of an ext2 file system on DEVICE." > + (match (status:exit-val > + (system* "e2fsck" "-v" "-p" "-C" "0" device)) [...] > - (define fsck > - (string-append "fsck." type)) What’s wrong with using “fsck.extN” like we did before? (Either way is fine with me, just curious.) Otherwise LGTM, thanks! Ludo’.