From e866d9cfe8504bf75f0fb80475c5a6ec65b39081 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 10 Oct 2003 16:53:02 +0000 Subject: add fudge factor (#106787) --- src/redhat-support-check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redhat-support-check.c b/src/redhat-support-check.c index f907432f..280cebc1 100644 --- a/src/redhat-support-check.c +++ b/src/redhat-support-check.c @@ -150,7 +150,7 @@ int main(int argc, char **argv) { get_release_info(); openlog("redhat-support-check", 0, LOG_USER); - if (min_mem && memory < min_mem) { + if (min_mem && memory < (0.9 * min_mem)) { printf(_("WARNING: %s requires at least %dMB RAM to run as a supported configuration. (%lluMB detected)\n"), release_name, min_mem, memory); syslog(LOG_NOTICE,_("WARNING: %s requires at least %dMB RAM to run as a supported configuration. (%lluMB detected)\n"), -- cgit v1.2.1