From 8fd2bf7e2ce559145e820717afa96852ac0d0998 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Wed, 30 Aug 2017 12:53:09 -0400 Subject: [PATCH] common: use the value of ceph_repository in the error message Signed-off-by: Alfredo Deza --- roles/ceph-common/tasks/checks/check_mandatory_vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-common/tasks/checks/check_mandatory_vars.yml b/roles/ceph-common/tasks/checks/check_mandatory_vars.yml index c542ed825..4b3922571 100644 --- a/roles/ceph-common/tasks/checks/check_mandatory_vars.yml +++ b/roles/ceph-common/tasks/checks/check_mandatory_vars.yml @@ -25,7 +25,7 @@ - name: make sure ceph_stable_release is set fail: - msg: "make sure ceph_stable_release is set to a release name (e.g: luminous), http://docs.ceph.com/docs/master/release-notes/" + msg: "make sure ceph_stable_release ( {{ ceph_stable_release }} ) is set to a release name (e.g: luminous), http://docs.ceph.com/docs/master/release-notes/" when: - ceph_stable_release == 'dummy' - (ceph_repository != 'rhcs' or ceph_repository != 'dev')