062ec89dbb
List of relocated subdirectories: ceph/ceph-manager ceph/python-cephclient filesystem/nfscheck logging/logmgmt security/tpm2-openssl-engine security/wrs-ssl tools/collector tools/engtools/hostdata-collectors utilities/build-info utilities/namespace-utils utilities/pci-irq-affinity-agent utilities/platform-util utilities/tis-extensions utilities/update-motd Story: 2006166 Task: 35687 Depends-On: I665dc7fabbfffc798ad57843eb74dca16e7647a3 Change-Id: I2bf543a235507a4eff644a7feabd646a99d1474f Signed-off-by: Scott Little <scott.little@windriver.com> Depends-On: I85dda6d09028f57c1fb0f96e4bcd73ab9b9550be Signed-off-by: Scott Little <scott.little@windriver.com>
25 lines
591 B
Bash
25 lines
591 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
|
|
|
|
# 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
|