Execution
Date 12 Sep 2025 10:28:12 +0100
Duration 00:02:13.80
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.3 / 1.7.3
Python 3.10.10
Summary
43 Hosts
1 Tasks
43 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-dnf-check-update.yaml

---
- name: Refresh dnf metadata and check for updates
  hosts: all
  gather_facts: false
  tasks:
    - name: Refresh dnf cache
      ansible.builtin.shell: |
        set -o pipefail
        dnf clean all
        dnf check-update
      args:
        executable: /bin/bash
      changed_when: false