Thanks very much @Alessandro. Your suggestion helped me progress a bit. For the 
benefit of any other who may have the same issue, this is what I did:

The ansible upgrade takes place during the engine update within the script - 
/usr/share/ansible/collections/ansible_collections/ovirt/ovirt/roles/engine_setup/tasks/engine_setup.yml,
 in the task "Update all packages". For now, I have simply excluded 
ansible-core to be upgraded; the task would look like the following:

  - name: Update all packages
    ansible.builtin.yum:
      name: '*'
      state: latest
      conf_file: /tmp/yum.conf
      exclude:
        - ansible-core
    when: not ovirt_engine_setup_offline | bool
    tags:
      - "skip_ansible_lint"  # ANSIBLE0010

I welcome any suggestion to improve this. 

However, the setup process failed further down the line (as I have included 
below in the main thread).
_______________________________________________
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/QT42KYDWXOS6A32CNPIN2Z2KNFZXAXBI/

Reply via email to