b0559bc151
Story: 2006166 Task: 35687 Depends-On: I6c62895f8dda5b8dc4ff56680c73c49f3f3d7935 Depends-On: I665dc7fabbfffc798ad57843eb74dca16e7647a3 Change-Id: I70b6d52a13836e16139a0ca3f42b9e91e06e43b6 Signed-off-by: Scott Little <scott.little@windriver.com> Depends-On: I5618547e7e74b76d174f10897b1c747931738cd6 Signed-off-by: Scott Little <scott.little@windriver.com>
26 lines
613 B
Bash
26 lines
613 B
Bash
#!/bin/bash
|
|
# Devstack settings
|
|
|
|
# This plugin enables StarlingX stx-update services and follows the
|
|
# DevStack plugin contract:
|
|
# https://docs.openstack.org/devstack/latest/plugins.html#plugin-sh-contract
|
|
|
|
# Services
|
|
# sw-patch
|
|
|
|
# Defaults
|
|
# --------
|
|
|
|
STX_UPDATE_NAME=update
|
|
|
|
######### Plugin Specific ##########
|
|
enable_service $STX_UPDATE_NAME
|
|
|
|
# This must not use any variables to work properly in OpenStack's DevStack playbook
|
|
define_plugin update
|
|
# This works for Zuul jobs using OpenStack's DevStack roles
|
|
#plugin_requires update xxxx
|
|
|
|
# Initial source of lib script
|
|
source $DEST/update/devstack/lib/update
|