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

@ -6,7 +6,7 @@
# jobs, triggered by fedmsg, etc...
- name: Install the needed packages
package: name=git state=present
ansible.builtin.package: name=git state=present
tags:
- git
- git/checks

View file

@ -2,7 +2,7 @@
# tasklist for setting up git mail hooks
- name: Install needed packages
package:
ansible.builtin.package:
state: present
name:
- git

View file

@ -2,7 +2,7 @@
# tasklist for setting up the Git checkout seed
- name: Make sure packages needed are installed
package: name={{ item }} state=present
ansible.builtin.package: name={{ item }} state=present
with_items:
- tar
- python2

View file

@ -2,7 +2,7 @@
# tasklist for setting up a git server (git:// access)
- name: Install the git-daemon package
package: name=git-daemon state=present
ansible.builtin.package: name=git-daemon state=present
tags: git/server
# If NOT using xinetd
@ -34,7 +34,7 @@
# If using xinetd
- name: Install xinetd
package: name=xinetd state=present
ansible.builtin.package: name=xinetd state=present
when: ansible_distribution_major_version|int == 6 and ansible_distribution == 'RedHat'
tags: git/server