From b29f49ca7164ac840c7f18af2c2cdb8da6637fdb Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Thu, 5 Jan 2017 14:29:53 -0700 Subject: [PATCH] ceph-common: always include release.yml Prior to this change, a playbook run with '--tags' or '--skip-tags' would fail, because the ceph-common role would not include the release.yml task, and this file defines critical things like ceph_release. Thanks Andrew Schoen for help with the fix. (cherry picked from commit 63e5b5c4061c1307fa864089f198c338d77561a6) --- roles/ceph-common/tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/ceph-common/tasks/main.yml b/roles/ceph-common/tasks/main.yml index 4691f6575..3c1ff7df8 100644 --- a/roles/ceph-common/tasks/main.yml +++ b/roles/ceph-common/tasks/main.yml @@ -4,6 +4,8 @@ # Set ceph_release - include: ./release.yml + tags: + - always - include: ./checks/check_firewall.yml when: check_firewall