Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 1 | BUNDLES = [ |
| 2 | '//providers/netconf/device:onos-providers-netconf-device', |
Michele Santuari | 358f30e | 2016-08-04 17:33:12 +0200 | [diff] [blame] | 3 | '//providers/netconf/alarm:onos-providers-netconf-alarm', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 4 | '//protocols/netconf/api:onos-protocols-netconf-api', |
| 5 | '//protocols/netconf/ctl:onos-protocols-netconf-ctl', |
Andrea Campanella | 7bbe7b1 | 2017-05-03 16:03:38 -0700 | [diff] [blame] | 6 | '//lib:sshd-core', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 7 | ] |
| 8 | |
| 9 | EXCLUDED_BUNDLES = [ |
Ray Milkey | 4e5139b | 2016-04-27 15:50:43 -0700 | [diff] [blame] | 10 | '//lib:ganymed-ssh2', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 11 | ] |
| 12 | |
| 13 | onos_app ( |
| 14 | title = 'NETCONF Provider', |
| 15 | category = 'Provider', |
Thomas Vachuska | c98aa2a | 2017-08-28 10:47:48 -0700 | [diff] [blame] | 16 | url = 'https://wiki.onosproject.org/display/ONOS/NETCONF', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 17 | included_bundles = BUNDLES, |
| 18 | excluded_bundles = EXCLUDED_BUNDLES, |
Thomas Vachuska | c98aa2a | 2017-08-28 10:47:48 -0700 | [diff] [blame] | 19 | description = 'Provides means for ONOS to discover and trigger the initial handshake procedure ' + |
| 20 | 'with NETCONF from information given by network configuration.' + |
| 21 | 'Also provides capabilities for receiving asynchronous alarm notifications from devices.', |
Andrea Campanella | 4c5fd7c | 2017-01-31 17:20:56 -0800 | [diff] [blame] | 22 | required_apps = [ 'org.onosproject.faultmanagement'], |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 23 | ) |
| 24 | |
| 25 | |