
This commit introduces the installation of guest client and nfv package. Change-Id: I56351803c9b0c6b0b62f98a5593f1fb100d28992 Story: https://storyboard.openstack.org/#!/story/2003163 Signed-off-by: Erick Cardona <erick.cardona.ruiz@intel.com>
16 lines
263 B
Bash
16 lines
263 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
|
|
# Initial source of lib script
|
|
source $DEST/stx-nfv/devstack/lib/stx-nfv
|
|
fi
|