From 8cc75e516c31ca4585e79cf338a879ea81c4f81d Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 21 Feb 2019 10:30:29 +0100 Subject: [PATCH] common: do not override ceph_release when ceph_repository is 'rhcs' We shouldn't reset `ceph_release` with `ceph_stable_release` when `ceph_repository` is `rhcs` Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1645379 Signed-off-by: Guillaume Abrioux (cherry picked from commit 2b60a356343677da6371b7861ee657bfd42c54fd) --- roles/ceph-common/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/ceph-common/tasks/main.yml b/roles/ceph-common/tasks/main.yml index 1c2e3d925..c0fc52698 100644 --- a/roles/ceph-common/tasks/main.yml +++ b/roles/ceph-common/tasks/main.yml @@ -48,6 +48,7 @@ ceph_release: "{{ ceph_stable_release }}" when: - ceph_origin == 'repository' + - ceph_repository not in ['dev', 'rhcs'] tags: - always