- name: Retrait linux_logo en Exclude (yum) ini_file: path: /etc/yum.conf section: main option: exclude state: absent when: ansible_pkg_mgr == "yum" - name: Retrait linux_logo en Exclude (dnf) ini_file: path: /etc/dnf/dnf.conf section: main option: exclude state: absent when: ansible_pkg_mgr == "dnf" - name: Installation linux_logo Fedora x86_64 package: name: https://fantom.fedorapeople.org/linux_logo-5.11-22.fc{{ logo_release }}.x86_64.rpm state: present when: ansible_distribution == "Fedora" and ansible_distribution_version|int >= logo_release|int and ansible_architecture == "x86_64" - name: Installation linux_logo Fedora armv7hl package: name: https://fantom.fedorapeople.org/linux_logo-5.11-22.fc{{ logo_release }}.armv7hl.rpm state: present when: ansible_distribution == "Fedora" and ansible_distribution_version|int >= logo_release|int and ansible_architecture == "armv7l" - name: Ajout linux_logo en Exclude (yum) ini_file: path: /etc/yum.conf section: main option: exclude value: linux_logo when: ansible_pkg_mgr == "yum" - name: Ajout linux_logo en Exclude (dnf) ini_file: path: /etc/dnf/dnf.conf section: main option: exclude value: linux_logo when: ansible_pkg_mgr == "dnf"