Files
fedora-infra_ansible/roles/abrt/retrace/tasks/usefafpkgs.yml
Ryan Lerch 462176464b ansiblelint fixes-- fqcn[action-core] - command to ansible.builtin.command
Replaces many references to  command: with ansible.builtin.command

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2025-01-15 11:26:47 +10:00

15 lines
285 B
YAML

---
- name: Check if faf is installed
ansible.builtin.command: rpm -q faf
changed_when: false
- name: Add user retrace to faf db
postgresql_user:
db: faf
name: retrace
priv: ALL
role_attr_flags: SUPERUSER
state: present
become: yes
become_user: postgres