HenriWahl / checkmk-agent-plugin-yum

Checks for updates on RPM-based distributions via yum.
GNU General Public License v2.0
24 stars 22 forks source link

Problem with RHEL/CentOS8 and dnf (yum-cache) #27

Closed FJerusalem closed 3 years ago

FJerusalem commented 4 years ago

To fix replace YUM_CURRENT="$(ls -lR /var/cache/yum/)" with YUM_CURRENT="$(ls -lR /var/cache/yum/ || ls -lR /var/cache/dnf/)" in yum-plugin.

HenriWahl commented 4 years ago

Thanks - please check fixed .mkp-file.

FJerusalem commented 3 years ago

works fine. thanks a lot!