Relax the LCP requirements - it is OK to have an address without an LCP

This commit is contained in:
Pim van Pelt
2022-04-03 09:04:11 +00:00
parent f786a00e9a
commit d30f2d8965
3 changed files with 1 additions and 28 deletions

View File

@ -415,9 +415,6 @@ def validate_interfaces(yaml):
iface_lcp = get_lcp(yaml, ifname)
iface_address = has_address(yaml, ifname)
if iface_address and not iface_lcp:
msgs.append("interface %s has an address but no LCP" % ifname)
result = False
if is_l2(yaml, ifname) and iface_lcp:
msgs.append("interface %s is in L2 mode but has LCP name %s" % (ifname, iface_lcp))
result = False
@ -511,10 +508,6 @@ def validate_interfaces(yaml):
if has_address(yaml, sub_ifname):
## The sub_iface lcp is not required: it can be derived from the iface_lcp, which has to be set
if not iface_lcp:
msgs.append("sub-interface %s has an address but %s does not have an LCP" % (sub_ifname, ifname))
result = False
if is_l2(yaml, sub_ifname):
msgs.append("sub-interface %s is in L2 mode but has an address" % sub_ifname)
result = False