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
This commit is contained in:
Jimmy McCrory 2016-08-05 17:20:47 -07:00
parent c9d21ace1f
commit 08bd55d317

View File

@ -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