- name: Check if the ghost package exists in RPM database
command: rpm -q CPLS-1.0.0-.x86_64
register: rpm_check
failed_when: false
changed_when: false
- name: Remove corrupted RPM entry from database
command: rpm -e --noscripts --justdb CPLS-1.0.0-.x86_64
become: true
when: rpm_check.rc == 0
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)