From e8b159de175c4d5ffc933f09f5c89b2f1529fc66 Mon Sep 17 00:00:00 2001 From: NyxErinys Date: Tue, 26 May 2026 07:32:23 -0500 Subject: [PATCH] fix config syntax --- hosts/servers/poseidon/shares.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/hosts/servers/poseidon/shares.nix b/hosts/servers/poseidon/shares.nix index 102525a..75488f6 100644 --- a/hosts/servers/poseidon/shares.nix +++ b/hosts/servers/poseidon/shares.nix @@ -39,6 +39,12 @@ let "epsilon" ]; + # initiators = [ + # { node_wwn = "iqn.2026-01.dev.nyxerinys:gamma"; } + # { node_wwn = "iqn.2026-01.dev.nyxerinys:delta"; } + # { node_wwn = "iqn.2026-01.dev.nyxerinys:epsilon"; } + # ]; + targets = [ { name = "authentik"; zvol = "Velaris/Containers/Authentik"; lun = 0; } ]; @@ -86,10 +92,11 @@ in { luns = [ { index = t.lun; - storage_object = "/backstores/block/${t.name}"; + plugin = "block"; + name = t.name; } ]; - acls = initiators; + node_acls = initiators; }]; }) targets; };