summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-01-06 20:50:37 +0100
committermakefu <github@syntax-fehler.de>2018-01-06 20:50:37 +0100
commit7b39418eb059a80b365beba867613ea0e378c189 (patch)
treebb6b63e1bc08934377fbb96bad8b3dd7ecbc3dd9
parent9da4f1242ad782a54b524f6c470cfe82be4a63b4 (diff)
ma filepimp.r: add nofail to disks
-rw-r--r--makefu/1systems/filepimp/config.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefu/1systems/filepimp/config.nix b/makefu/1systems/filepimp/config.nix
index e9058ec85..30ba61a9b 100644
--- a/makefu/1systems/filepimp/config.nix
+++ b/makefu/1systems/filepimp/config.nix
@@ -71,7 +71,10 @@ in {
'') allDisks);
fileSystems = let
xfsmount = name: dev:
- { "/media/${name}" = { device = dev; fsType = "xfs"; }; };
+ { "/media/${name}" = {
+ device = dev; fsType = "xfs";
+ options = [ "nofail" ];
+ }; };
in
# (xfsmount "j0" (part1 jDisk0)) //
(xfsmount "j1" (part1 jDisk1)) //