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" = fileSystems."/tank" =
{ device = "tank"; { device = "tank";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/poelzi" = fileSystems."/tank/poelzi" =
{ device = "tank/poelzi"; { device = "tank/poelzi";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/storage" = fileSystems."/tank/storage" =
{ device = "tank/storage"; { device = "tank/storage";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/backup_vms_ceph_migration" = fileSystems."/tank/backup_vms_ceph_migration" =
{ device = "tank/backup_vms_ceph_migration"; { device = "tank/backup_vms_ceph_migration";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/dump-dvb-iq-storage" = fileSystems."/tank/dump-dvb-iq-storage" =
{ device = "tank/dump-dvb-iq-storage"; { device = "tank/dump-dvb-iq-storage";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/erisbert" = fileSystems."/tank/erisbert" =
{ device = "tank/erisbert"; { device = "tank/erisbert";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/shits-and-giggles" = fileSystems."/tank/shits-and-giggles" =
{ device = "tank/shits-and-giggles"; { device = "tank/shits-and-giggles";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/storage/ftp" = fileSystems."/tank/storage/ftp" =
{ device = "tank/storage/ftp"; { device = "tank/storage/ftp";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/storage/sshlog" = fileSystems."/tank/storage/sshlog" =
{ device = "tank/storage/sshlog"; { device = "tank/storage/sshlog";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
fileSystems."/tank/storage/stream" = fileSystems."/tank/storage/stream" =
{ device = "tank/storage/stream"; { device = "tank/storage/stream";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ]; options = [ "zfsutil" "nofail" ];
}; };
swapDevices = [ ]; swapDevices = [ ];