Fix: services.openiscsi.discoverPortal (not portals), should be a string, not an array.

This commit is contained in:
Joey Hafner 2025-01-31 11:35:58 -08:00
parent 459f75eb5b
commit c5091f76a4
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55

View File

@ -13,7 +13,7 @@
in { in {
services.openiscsi = { services.openiscsi = {
enable = true; enable = true;
discoverPortals = portals; discoverPortal = "${portals.paladin.ip}:${portals.paladin.port}";
targets = [ iqn ]; targets = [ iqn ];
}; };