Skip EPEL & RDO install for CI nodes
If the nodepool info file is around, assume we're on a OpenStack CI node and skip re-installing EPEL & RDO Change-Id: Ife80af015b26514098e0633f568e3da35b9eea8c
This commit is contained in:
parent
f5db32dfdb
commit
bda194adb9
7
stack.sh
7
stack.sh
@ -335,6 +335,13 @@ fi
|
||||
# to speed things up
|
||||
SKIP_EPEL_INSTALL=$(trueorfalse False SKIP_EPEL_INSTALL)
|
||||
|
||||
# If we have /etc/nodepool/provider assume we're on a OpenStack CI
|
||||
# node, where EPEL is already pointing at our internal mirror and RDO
|
||||
# is pre-installed.
|
||||
if [[ -f /etc/nodepool/provider ]]; then
|
||||
SKIP_EPEL_INSTALL=True
|
||||
fi
|
||||
|
||||
if is_fedora && [[ $DISTRO == "rhel7" ]] && \
|
||||
[[ ${SKIP_EPEL_INSTALL} != True ]]; then
|
||||
_install_epel_and_rdo
|
||||
|
Loading…
Reference in New Issue
Block a user