dragonflow/neutron-l3-controller-agent
Eran Gampel 2167a8bafe Set Up the neutron l3 sdn addon using neutron as library
L3 service plugin
L3 Controller Agent + OpenFlow controller

Change-Id: Icdc91c0c9721e14e0e85ba0b4736d7c5b979bdbd
2015-03-01 18:16:07 +02:00

11 lines
340 B
Python
Executable File

#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'neutron==2015.1.dev109','console_scripts','neutron-l3-agent'
__requires__ = 'dragonflow==0.1'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('dragonflow==0.1', 'console_scripts', 'neutron-l3-controller-agent')()
)