141 - Support for Package Management in SO
authorvelandy <rajesh.velandy@riftio.com>
Wed, 4 Jan 2017 19:25:07 +0000 (19:25 +0000)
committervelandy <rajesh.velandy@riftio.com>
Wed, 4 Jan 2017 19:25:07 +0000 (19:25 +0000)
commit6364d016e7f819903ff29a2ce160cb4cea61bf8f
tree81f456fcebd380b01da8d06d29596cb99da7e856
parentc33673480c15d6e64402b547563640b2025a3cd6
141 - Support for Package Management in SO
81 files changed:
common/python/CMakeLists.txt
common/python/rift/downloader/__init__.py [new file with mode: 0644]
common/python/rift/downloader/base.py [new file with mode: 0644]
common/python/rift/downloader/url.py [new file with mode: 0644]
common/python/rift/mano/dts/__init__.py
common/python/rift/mano/dts/rpc/__init__.py [new file with mode: 0644]
common/python/rift/mano/dts/rpc/core.py [new file with mode: 0644]
common/python/test/CMakeLists.txt
common/python/test/utest_url_downloader.py [new file with mode: 0755]
examples/ping_pong_ns/CMakeLists.txt
examples/ping_pong_ns/rift/mano/examples/ping_pong_nsd.py
examples/ping_pong_ns/rift/mano/examples/ping_set_rate.py [new file with mode: 0644]
models/plugins/yang/mano-types.yang
models/plugins/yang/nsd.yang
rwcm/plugins/rwconman/rift/tasklets/rwconmantasklet/rwconman_config.py
rwcm/plugins/rwconman/rift/tasklets/rwconmantasklet/rwconmantasklet.py
rwlaunchpad/plugins/CMakeLists.txt
rwlaunchpad/plugins/cli/cli_launchpad_schema_listing.txt
rwlaunchpad/plugins/rwlaunchpadtasklet/CMakeLists.txt
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/package/handler.py [new file with mode: 0644]
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/package/package.py
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/package/store.py
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/tasklets/rwlaunchpad/export.py
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/tasklets/rwlaunchpad/image.py
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/tasklets/rwlaunchpad/message.py
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/tasklets/rwlaunchpad/tasklet.py
rwlaunchpad/plugins/rwlaunchpadtasklet/rift/tasklets/rwlaunchpad/uploader.py
rwlaunchpad/plugins/rwlaunchpadtasklet/test/CMakeLists.txt
rwlaunchpad/plugins/rwlaunchpadtasklet/test/utest_fileserver.py [new file with mode: 0755]
rwlaunchpad/plugins/rwlaunchpadtasklet/test/utest_uploader_app_dts.py [new file with mode: 0755]
rwlaunchpad/plugins/rwmonparam/test/utest_mon_params_dts.py
rwlaunchpad/plugins/rwpkgmgr/CMakeLists.txt [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/Makefile [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/downloader/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/downloader/url.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/proxy/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/proxy/base.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/proxy/filesystem.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/publisher/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/publisher/download_status.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/rpc.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/rwpkgmgr.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/subscriber/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rift/tasklets/rwpkgmgr/subscriber/download_status.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/rwpkgmgr.py [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/test/CMakeLists.txt [new file with mode: 0644]
rwlaunchpad/plugins/rwpkgmgr/test/utest_filesystem_proxy_dts.py [new file with mode: 0755]
rwlaunchpad/plugins/rwpkgmgr/test/utest_publisher_dts.py [new file with mode: 0755]
rwlaunchpad/plugins/rwpkgmgr/test/utest_subscriber_dts.py [new file with mode: 0755]
rwlaunchpad/plugins/rwstagingmgr/CMakeLists.txt [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/Makefile [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/model/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/model/staging_area.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/protocol.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/publisher/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/publisher/staging_status.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/rpc.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/rwstagingmgr.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/server/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/server/app.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/server/handler.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/store/__init__.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rift/tasklets/rwstagingmgr/store/file_store.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/rwstagingmgr.py [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/test/CMakeLists.txt [new file with mode: 0644]
rwlaunchpad/plugins/rwstagingmgr/test/utest_publisher_dts.py [new file with mode: 0755]
rwlaunchpad/plugins/rwstagingmgr/test/utest_rpc_dts.py [new file with mode: 0755]
rwlaunchpad/plugins/rwstagingmgr/test/utest_staging_store.py [new file with mode: 0755]
rwlaunchpad/plugins/rwstagingmgr/test/utest_tornado_app.py [new file with mode: 0755]
rwlaunchpad/plugins/yang/CMakeLists.txt
rwlaunchpad/plugins/yang/rw-launchpad.yang
rwlaunchpad/plugins/yang/rw-pkg-mgmt.tailf.yang [new file with mode: 0644]
rwlaunchpad/plugins/yang/rw-pkg-mgmt.yang [new file with mode: 0644]
rwlaunchpad/plugins/yang/rw-staging-mgmt.tailf.yang [new file with mode: 0644]
rwlaunchpad/plugins/yang/rw-staging-mgmt.yang [new file with mode: 0644]
rwlaunchpad/ra/racfg/pingpong_records_systest_openstack.racfg
rwlaunchpad/ra/racfg/pingpong_records_systest_openstack_xml.racfg
rwlaunchpad/ra/racfg/pingpong_vnf_reload_systest_openstack_xml.racfg
rwlaunchpad/test/launchpad.py