From 08bd55d31758ac9d3ebef06ef88e548e791eca30 Mon Sep 17 00:00:00 2001 From: Jimmy McCrory Date: Fri, 5 Aug 2016 17:20:47 -0700 Subject: [PATCH] Correct tags attribute typo A couple of include tasks had 'tags' mistyped as 'tag'. This also resolves a 'Specifying include variables at the top-level of the task is deprecated.' deprecation warning seen in Ansible 2.1.1.0. Change-Id: I1a806238e918fdae06da2b412399d812d644f467 --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 41305b31..81774fac 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -56,13 +56,13 @@ - include: apt.yml when: ansible_pkg_mgr == 'apt' - tag: + tags: - apt - package - include: rpm.yml when: ansible_pkg_mgr == 'yum' or ansible_pkg_mgr == 'dnf' - tag: + tags: - package - rpm