mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 18:02:05 +02:00
Fixes ONOS-5196 where flows for packet requests weren't removed on deactivate because the device provider deactivated before the others and the flows could no longer be removed from the flow store. Change-Id: I79445f5048b21c10e49d4f30d33a5b5a267a9afc
16 lines
447 B
Python
16 lines
447 B
Python
APPS = [
|
|
'org.onosproject.hostprovider',
|
|
'org.onosproject.lldpprovider',
|
|
'org.onosproject.openflow-base',
|
|
]
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.openflow',
|
|
title = 'OpenFlow Meta App',
|
|
category = 'Provider',
|
|
url = 'http://onosproject.org',
|
|
description = 'OpenFlow southbound meta application.',
|
|
included_bundles = [ '//utils/osgi:onlab-osgi' ], # FIXME to allow hollow oar files
|
|
required_apps = APPS,
|
|
)
|