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:
parent
c9d21ace1f
commit
08bd55d317
@ -56,13 +56,13 @@
|
|||||||
|
|
||||||
- include: apt.yml
|
- include: apt.yml
|
||||||
when: ansible_pkg_mgr == 'apt'
|
when: ansible_pkg_mgr == 'apt'
|
||||||
tag:
|
tags:
|
||||||
- apt
|
- apt
|
||||||
- package
|
- package
|
||||||
|
|
||||||
- include: rpm.yml
|
- include: rpm.yml
|
||||||
when: ansible_pkg_mgr == 'yum' or ansible_pkg_mgr == 'dnf'
|
when: ansible_pkg_mgr == 'yum' or ansible_pkg_mgr == 'dnf'
|
||||||
tag:
|
tags:
|
||||||
- package
|
- package
|
||||||
- rpm
|
- rpm
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user