iSCSI support, audit wizard, CSV improvements, bug fixes #1

Merged
scott merged 9 commits from devel into main 2026-03-05 16:08:43 -05:00
Showing only changes of commit d2dffacb33 - Show all commits

View File

@@ -323,7 +323,7 @@ async def _migrate_iscsi_portals(
for portal in portals:
comment = portal.get("comment", "")
ips = ", ".join(f"{l['ip']}:{l['port']}" for l in portal.get("listen", []))
ips = ", ".join(l['ip'] for l in portal.get("listen", []))
log.info("%s iSCSI portal %s [%s]", _bold("──"), _bold_cyan(repr(comment)), ips)
my_ips = _ip_set(portal)