All tasks now use FQCN

This commit is contained in:
2020-11-29 17:53:24 -06:00
parent 008d73322d
commit 7df7ca764e
5 changed files with 22 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
---
# tasks file for ensure_ansible_prereq
- name: 'repository changes'
apt_repository:
ansible.builtin.apt_repository:
repo: 'deb cdrom:*'
state: absent
- name: 'package states'
package:
ansible.builtin.package:
name: '{{ item.name }}'
state: '{{ item.state }}'
loop:
@@ -15,4 +15,6 @@
state: 'present'
loop_control:
label: '{{ item.name }} will be {{ item.state }}'
notify:
- 'ensure_ansible_prereq.package_facts'
- 'ensure_ansible_prereq.service_facts'