summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2021-09-24 21:08:13 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2021-09-24 21:11:19 +0200
commit69f37702dfcda776a190d5c40fad8518469ce3c4 (patch)
treeb4ebc2c216f539236600b9e5b41f020c90d8911c /gnu/system
parent1f08a6a26997011751845503c365aa54c7e5a5bc (diff)
downloadguix-patches-69f37702dfcda776a190d5c40fad8518469ce3c4.tar
guix-patches-69f37702dfcda776a190d5c40fad8518469ce3c4.tar.gz
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.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/file-systems.scm2
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