ansiblelint fixes - fqcn[action-core] - package to ansible.builtin.package

Replaces many references to  package: with ansible.builtin.package

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
Ryan Lercho 2024-12-19 13:22:42 +10:00
parent 462176464b
commit 25391e95b7
166 changed files with 286 additions and 286 deletions

View file

@ -1,6 +1,6 @@
---
- name: Install python3-pandas package
package: state=present name=python3-pandas
ansible.builtin.package: state=present name=python3-pandas
tags:
- packages
- web-data
@ -90,7 +90,7 @@
- cron
- name: Install package deps for mirrors-countme
package:
ansible.builtin.package:
# tqdm is optional but it gives nice progress meters for interactive use
name: ['python3-pip', 'python3-setuptools', 'python3-tqdm']
state: present
@ -115,7 +115,7 @@
- web-data
- name: Install the python3.11-mirrors-countme RPM package
package:
ansible.builtin.package:
name: python3.11-mirrors-countme
state: present
tags:
@ -213,7 +213,7 @@
- cron
- name: Install awstats package
package: state=present name=awstats
ansible.builtin.package: state=present name=awstats
tags:
- packages
- web-data