mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
file-systems: Fix <file-system> skip-check-if-clean? default.
Let this be a warning against—even cautiously and deliberately—using double negatives. You shall stare, but you shall not see. * gnu/system/file-systems.scm (<file-system>): Fix the default skip-check-if-clean? value to match the documentation and the intention.
This commit is contained in:
parent
1f08a6a269
commit
69f37702df
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ (define-record-type* <file-system> %file-system
|
|||
(check? file-system-check? ; Boolean
|
||||
(default #t))
|
||||
(skip-check-if-clean? file-system-skip-check-if-clean? ; Boolean
|
||||
(default #f))
|
||||
(default #t))
|
||||
(repair file-system-repair ; symbol or #f
|
||||
(default 'preen))
|
||||
(create-mount-point? file-system-create-mount-point? ; Boolean
|
||||
|
|
Loading…
Reference in a new issue