diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-09-24 21:08:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-09-24 21:11:19 +0200 |
commit | 69f37702dfcda776a190d5c40fad8518469ce3c4 (patch) | |
tree | b4ebc2c216f539236600b9e5b41f020c90d8911c | |
parent | 1f08a6a26997011751845503c365aa54c7e5a5bc (diff) | |
download | guix-69f37702dfcda776a190d5c40fad8518469ce3c4.tar.gz guix-69f37702dfcda776a190d5c40fad8518469ce3c4.zip |
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.
-rw-r--r-- | gnu/system/file-systems.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm index 0350bf984f..e69cfd06e6 100644 --- a/gnu/system/file-systems.scm +++ b/gnu/system/file-systems.scm @@ -127,7 +127,7 @@ (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 |