From 670670de7eea032628eda7a102a01f2f75199703 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Tue, 16 Aug 2016 05:42:46 +0000 Subject: [PATCH] defaults: beta_repos must be a dict This causes ceph-cm-ansible to fail every teuthology job due to the bad default: 'with_dict expects a dict' Signed-off-by: Josh Durgin --- roles/common/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/common/defaults/main.yml b/roles/common/defaults/main.yml index bf7cb077..ed370347 100644 --- a/roles/common/defaults/main.yml +++ b/roles/common/defaults/main.yml @@ -29,7 +29,7 @@ epel_repos: gpgcheck: 0 # Override in secrets repo -beta_repos: [] +beta_repos: {} # Default to false. A task in roles/common/tasks/yum_systems.yml # will set this to true if lsb_release indicates the distro is an Alpha/Beta release -- 2.47.3