summaryrefslogtreecommitdiff
path: root/devstack
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-08-12 10:59:32 +0000
committerGerrit Code Review <review@openstack.org>2021-08-12 10:59:32 +0000
commit829cef1aee18d45cfdb3af07bd1e34362efdada8 (patch)
treedeb59e3484e5746fd8f399bd627998b153ecd2b5 /devstack
parentaf76d3cb3d32d9b2a2fc83dedabce4374c3650ce (diff)
parentf57a51e43ca7a8903763cc24b1c510fa50a16b2c (diff)
downloadceilometer-829cef1aee18d45cfdb3af07bd1e34362efdada8.tar.gz
Merge "Do not install libvirt-python on RHEL via pip"
Diffstat (limited to 'devstack')
-rw-r--r--devstack/plugin.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/devstack/plugin.sh b/devstack/plugin.sh
index 6c696eca..9ffdaea8 100644
--- a/devstack/plugin.sh
+++ b/devstack/plugin.sh
@@ -97,7 +97,7 @@ function _ceilometer_prepare_coordination {
function _ceilometer_prepare_virt_drivers {
# Only install virt drivers if we're running nova compute
if is_service_enabled n-cpu ; then
- if [[ "$VIRT_DRIVER" = 'libvirt' ]]; then
+ if [[ "$VIRT_DRIVER" = 'libvirt' && "$DISTRO" != 'rhel8' ]]; then
pip_install_gr libvirt-python
fi