From 6daa0a7fea8b829f8afbe5540d15259e09498995 Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Mon, 11 May 2020 00:41:58 +0200 Subject: [PATCH] No upstream ceph for Debian There's no upstream Ceph package repository for Buster, so we must disable it this if we're running on Debian. Change-Id: If91c333b287d948b99e768b6c919df869af86a63 --- manifests/repos.pp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/manifests/repos.pp b/manifests/repos.pp index d28b9f735..574713a41 100644 --- a/manifests/repos.pp +++ b/manifests/repos.pp @@ -97,10 +97,12 @@ class openstack_integration::repos { } } - class { 'ceph::repo': - enable_sig => $enable_sig, - enable_epel => $enable_epel, - ceph_mirror => $ceph_mirror, + if $::osfamily == 'RedHat' or $::operatingsystem == 'Ubuntu' { + class { 'ceph::repo': + enable_sig => $enable_sig, + enable_epel => $enable_epel, + ceph_mirror => $ceph_mirror, + } } if $::osfamily == 'RedHat' {