e4264635dc
This is partial refactor of https://review.openstack.org/#/c/584170 based on review comments. Change-Id: Ia25df018ceae84c613f2f5dea1a6c3d175b4a551 Storyboard: https://storyboard.openstack.org/#!/story/2004250
12 lines
546 B
Plaintext
12 lines
546 B
Plaintext
enable_service cyborg cyborg-api cyborg-cond cyborg-agent
|
|
|
|
# OPAE settings
|
|
# OPAE packages are not yet upstreamed into OS repos
|
|
# We need to download them from OPAE releases page on GitHub
|
|
OPAE_VERSION=${OPAE_VERSION:-"1.1.0-2"}
|
|
OPAE_GITHUB=${OPAE_GITHUB:-"https://github.com/OPAE/opae-sdk/releases/download/$OPAE_VERSION"}
|
|
OPAE_DEVEL_PKG=${OPAE_DEVEL_PKG:-"opae-devel"}
|
|
OPAE_DEVEL=${OPAE_DEVEL:-"${OPAE_DEVEL_PKG}-$OPAE_VERSION.x86_64"}
|
|
OPAE_LIBS_PKG=${OPAE_LIBS_PKG:-"opae-libs"}
|
|
OPAE_LIBS=${OPAE_LIBS:-"${OPAE_LIBS_PKG}-$OPAE_VERSION.x86_64"}
|