mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-20 03:42:07 +02:00
21 lines
509 B
Python
21 lines
509 B
Python
BUNDLES = [
|
|
'//providers/netconf/device:onos-providers-netconf-device',
|
|
'//protocols/netconf/api:onos-protocols-netconf-api',
|
|
'//protocols/netconf/ctl:onos-protocols-netconf-ctl',
|
|
]
|
|
|
|
EXCLUDED_BUNDLES = [
|
|
'//lib:ganymed-ssh2', # FIXME - Needs wrap
|
|
]
|
|
|
|
onos_app (
|
|
title = 'NETCONF Provider',
|
|
category = 'Provider',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
excluded_bundles = EXCLUDED_BUNDLES,
|
|
description = 'NETCONF protocol southbound providers.',
|
|
)
|
|
|
|
|