
Begin working on a base devstack job for testing stx projects. We have to pull a lot of stable/pike bits yet let STX services run from master. Change-Id: I6eee854888acb27b54c10c25d47e97d98a7f999c Signed-off-by: Dean Troyer <dtroyer@gmail.com>
20 lines
353 B
Bash
20 lines
353 B
Bash
#!/bin/bash
|
|
# Devstack settings
|
|
|
|
# Defaults
|
|
# --------
|
|
|
|
STX_FAULT_NAME=stx-fault
|
|
|
|
######### Plugin Specific ##########
|
|
enable_service $STX_FAULT_NAME
|
|
#define_plugin $STX_FAULT_NAME
|
|
|
|
# Handle STX pre-reqs
|
|
if is_service_enabled fm-rest-api; then
|
|
enable_service tsconfig
|
|
fi
|
|
|
|
# Initial source of lib script
|
|
source $DEST/stx-fault/devstack/lib/stx-fault
|