summaryrefslogtreecommitdiffstats
path: root/devstack/plugin.sh
diff options
context:
space:
mode:
authorlfourie <louis.fourie@huawei.com>2017-02-28 10:40:28 -0800
committerlfourie <louis.fourie@huawei.com>2017-02-28 10:40:28 -0800
commit85499ecb3034bd1a7ccf228ca0880456d4d46c71 (patch)
tree25d49d849c26e129e968bb6a7fa0af4fa778f135 /devstack/plugin.sh
parent4b48bf9e4a988b9fd1c6f43b8bb5e26542679fd3 (diff)
Add VNFFG release documentation
Change-Id: Ib72fadba154e054c8c819f96d0ac5674fa7967fe Signed-off-by: lfourie <louis.fourie@huawei.com>
Diffstat (limited to 'devstack/plugin.sh')
-rw-r--r--devstack/plugin.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/devstack/plugin.sh b/devstack/plugin.sh
deleted file mode 100644
index 04a87bb..0000000
--- a/devstack/plugin.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-# function definitions for networking-sfc devstack plugin
-
-function networking_sfc_install {
- setup_develop $NETWORKING_SFC_DIR
-}
-
-function networking_sfc_configure_common {
- _neutron_service_plugin_class_add $NEUTRON_FLOWCLASSIFIER_PLUGIN
- _neutron_service_plugin_class_add $NEUTRON_SFC_PLUGIN
- iniset $NEUTRON_CONF DEFAULT service_plugins $Q_SERVICE_PLUGIN_CLASSES
- iniadd $NEUTRON_CONF sfc drivers $NEUTRON_SFC_DRIVERS
- _neutron_deploy_rootwrap_filters $NETWORKING_SFC_DIR
- neutron-db-manage --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE --subproject networking-sfc upgrade head
-}
-
-
-if [[ "$1" == "stack" && "$2" == "install" ]]; then
- # Perform installation of service source
- echo_summary "Installing networking-sfc"
- networking_sfc_install
-
-elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
- echo_summary "Configuring networking-sfc"
- networking_sfc_configure_common
-fi