4a0dc9e70e
Depends-On: https://review.opendev.org/#/c/653964/ Change-Id: Icdd50ca6f1d4b982ca260ea43aafe95ea1e7d117 Signed-off-by: Dean Troyer <dtroyer@gmail.com>
26 lines
607 B
Bash
26 lines
607 B
Bash
#!/bin/bash
|
|
# Devstack settings
|
|
|
|
# This plugin enables StarlingX integ services and follows the
|
|
# DevStack plugin contract:
|
|
# https://docs.openstack.org/devstack/latest/plugins.html#plugin-sh-contract
|
|
|
|
# Services
|
|
# platform-util
|
|
|
|
# Defaults
|
|
# --------
|
|
|
|
STX_INTEG_NAME=integ
|
|
|
|
######### Plugin Specific ##########
|
|
enable_service $STX_INTEG_NAME
|
|
|
|
# This must not use any variables to work properly in OpenStack's DevStack playbook
|
|
define_plugin integ
|
|
# This works for Zuul jobs using OpenStack's DevStack roles
|
|
plugin_requires integ update
|
|
|
|
# Initial source of lib script
|
|
source $DEST/integ/devstack/lib/integ
|