Replace c3 (failed) with zippy for clusterfs.

Use IPs for mounting glusterfs, prevents boot mount failing before networking comes up.
This commit is contained in:
2024-07-26 08:20:17 +01:00
parent f2ef036bf4
commit b84a90d35a
2 changed files with 9 additions and 2 deletions

View File

@@ -3,10 +3,10 @@
environment.systemPackages = [ pkgs.glusterfs ];
fileSystems."/data/compute" = {
device = "c1:/compute";
device = "192.168.1.71:/compute";
fsType = "glusterfs";
options = [
"backup-volfile-servers=c2:c3"
"backup-volfile-servers=192.168.1.72:192.168.1.2"
"_netdev"
];
};