Notify when network bridge is missing, but allow attaching DP

This commit is contained in:
Daniel Markstedt 2023-11-09 08:30:12 +09:00 committed by Daniel Markstedt
parent f90f8eaf4e
commit 1585a2fb70
1 changed files with 1 additions and 2 deletions

View File

@ -298,9 +298,8 @@ def is_bridge_configured(interface):
return_msg = _(
"Configure the network bridge for %(interface)s first: ", interface=interface
)
return {"status": False, "msg": return_msg + ", ".join(to_configure)}
return {"status": True, "msg": return_msg}
return {"status": True, "msg": return_msg + ", ".join(to_configure)}
def is_safe_path(file_name):