()
| 2041 | return {'success': False, 'error': r['err'] or 'failed to remove bridge'} |
| 2042 | return {'success': True, 'destroyed': True} |
| 2043 | |
| 2044 | # ---- create: validate hard before touching any link -------------------- |
| 2045 | default_if = _default_route_iface() |
| 2046 | for i in (iface_a, iface_b): |
| 2047 | if not _valid_iface(i): |
| 2048 | return {'success': False, 'error': f'invalid interface {i!r}'} |
nothing calls this directly
no test coverage detected