Jonathan Hart 66da814510 Change order of openflow app dependencies.
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
2016-09-02 22:10:50 +00:00

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,
)