From 187d27982cccd0d67a2d4b301ab2359b893760d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 24 Feb 2024 20:29:25 +0100 Subject: [PATCH] server9: don't fail when not super important mounts are missing --- hosts/server9/hardware-configuration.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/hosts/server9/hardware-configuration.nix b/hosts/server9/hardware-configuration.nix index cbc49fc5..171cda20 100644 --- a/hosts/server9/hardware-configuration.nix +++ b/hosts/server9/hardware-configuration.nix @@ -27,61 +27,61 @@ fileSystems."/tank" = { device = "tank"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/poelzi" = { device = "tank/poelzi"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/storage" = { device = "tank/storage"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/backup_vms_ceph_migration" = { device = "tank/backup_vms_ceph_migration"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/dump-dvb-iq-storage" = { device = "tank/dump-dvb-iq-storage"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/erisbert" = { device = "tank/erisbert"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/shits-and-giggles" = { device = "tank/shits-and-giggles"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/storage/ftp" = { device = "tank/storage/ftp"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/storage/sshlog" = { device = "tank/storage/sshlog"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; fileSystems."/tank/storage/stream" = { device = "tank/storage/stream"; fsType = "zfs"; - options = [ "zfsutil" ]; + options = [ "zfsutil" "nofail" ]; }; swapDevices = [ ];