41a8e350f0
1. Refine nfv installation code to modify nfv config files 2. Add dependency resource-agents 3. Add code to start, stop annd clean up nfv services Story: 2003163 Task: 23298 Change-Id: Ic1e95dbaae4b319dcc9b4b20dea82bfb56e09696 Signed-off-by: Yi Wang <yi.c.wang@intel.com>
19 lines
296 B
Bash
19 lines
296 B
Bash
#!/bin/bash
|
|
# Devstack settings
|
|
|
|
# Defaults
|
|
# --------
|
|
|
|
STX_NFV_NAME=stx-nfv
|
|
|
|
######### Plugin Specific ##########
|
|
enable_service $STX_NFV_NAME
|
|
|
|
if is_service_enabled stx-nfv; then
|
|
# Enable prerequisites here
|
|
:
|
|
fi
|
|
|
|
# Initial source of lib script
|
|
source $DEST/stx-nfv/devstack/lib/stx-nfv
|