Skip to content
This repository has been archived by the owner on Jan 31, 2023. It is now read-only.

Patch: fix CentOS 7 bug #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion check_yum
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class YumTester:

number_other_updates = number_total_updates - number_security_updates

if len(output) > number_total_updates + 25:
if len(output) > number_total_updates + 25000:
end(WARNING, "YUM output signature is larger than current known format, please make sure you have upgraded to the latest version of this plugin. If the problem persists, please contact the author for a fix")

return number_security_updates, number_other_updates
Expand Down