server9: don't fail when not super important mounts are missing

This commit is contained in:
Sandro - 2024-02-24 20:29:25 +01:00
parent 074992b128
commit 187d27982c
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 10 additions and 10 deletions

View File

@ -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 = [ ];