Activity log for bug #1894110

Date Who What changed Old value New value Message
2020-09-03 13:29:31 No Name bug added bug
2020-09-03 13:36:51 No Name description The error appears in /usr/local/share/kolla-ansible/ansible/roles/baremetal/tasks/install.yml The 'drpm' package can't be found by yum, so the playbook fails. Howewer 'deltarpm' installs fine. Replacing the "name: drpm" line with "name: deltarpm" solves the problem. I'm not sure wnether this will work on both RHEL and CentOS Linux me: Install deltarpm packages package: name: drpm state: present update_cache: yes become: True when: ansible_os_family == 'RedHat' OS: Centos 7 The error appears in /usr/local/share/kolla-ansible/ansible/roles/baremetal/tasks/install.yml The 'drpm' package can't be found by yum, so the playbook fails. Howewer 'deltarpm' installs fine. Replacing the "name: drpm" line with "name: deltarpm" solves the problem. I'm not sure wnether this will work on both RHEL and CentOS Linux. My deployment and target host's OS is Centos 7 me: Install deltarpm packages   package:     name: drpm     state: present     update_cache: yes   become: True   when: ansible_os_family == 'RedHat'