Bonding is configured under interface properties, and handled by netifd.
luci-proto-bonding was removed, even if the proto-bonding package is still
useful. This change prevents the trace-back from attempting to load
luci-proto-bonding.
Signed-off-by: Paul Donald <[email protected]>
function getProtocolHandlers(cache) {
return callNetworkProtoHandlers().then(function(protos) {
+ /* Prevent attempt to load "protocol/bonding" */
+ delete protos.bonding;
+
/* Register "none" protocol */
if (!protos.hasOwnProperty('none'))
Object.assign(protos, { none: { no_device: false } });