1
0
mirror of https://github.com/CumulusNetworks/ifupdown2.git synced 2024-05-06 15:54:50 +00:00

python-ifupdown initial checkin

Ticket: CM-1438
Reviewed By: TBD
Testing Done:

- Will checkin build files after some more testing and performance
  numbers. It will go into the testing repo for 2.0

- All TODO items are part of the checked in TODO file
This commit is contained in:
roopa
2013-11-04 06:06:11 -08:00
commit a6f80f0e0b
22 changed files with 3099 additions and 0 deletions

16
setup.py Executable file
View File

@ -0,0 +1,16 @@
from distutils.core import setup
setup(name='ifupdown2',
version='0.1',
description = "ifupdown 2",
author='Roopa Prabhu',
author_email='roopa@cumulusnetworks.com',
url='cumulusnetworks.com',
package_dir = {'ifupdown' : 'pkg'},
packages=['ifupdown'],
scripts = ['sbin/ifupdown'],
data_files=[('share/man/man8/',
['man/ifup.8', 'man/ifdown.8', 'man/ifquery.8']),
('/etc/init.d/',
['init.d/networking'])]
)