From 32199d9d7ca6ea3222e7d0a1d0f9e69d72cade3f Mon Sep 17 00:00:00 2001 From: hjp Date: Mon, 25 Sep 2006 08:19:46 +0000 Subject: [PATCH] less noise. --- quotacheck/quotacheck.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/quotacheck/quotacheck.pl b/quotacheck/quotacheck.pl index e4d0211..9202fe7 100644 --- a/quotacheck/quotacheck.pl +++ b/quotacheck/quotacheck.pl @@ -133,7 +133,7 @@ sub parseline($$) { (\d+)\s+(\d+)\s+(\d+)\s+($hpuxtime|$linuxtime)\s+ (\d+)\s+(\d+)\s+(\d+) /x) { - print "block limit: $1: $2 > ($3 $4) $5\n"; + #print "block limit: $1: $2 > ($3 $4) $5\n"; $user = $1; $msg = warnmsg($mount, $2/1024, $3/1024, $4/1024, $5, "MB", $user); @@ -141,17 +141,17 @@ sub parseline($$) { (\d+)\s+(\d+)\s+(\d+)\s+ (\d+)\s+(\d+)\s+(\d+)\s+($hpuxtime|$linuxtime) /x) { - print "file limit: $1: $5 > ($6 $7) $8\n"; + #print "file limit: $1: $5 > ($6 $7) $8\n"; $user = $1; $msg = warnmsg($mount, $5, $6, $7, $8, "Files", $user); } elsif (/(\S+) \s+ \+\+ \s* (\d+)\s+(\d+)\s+(\d+)\s+($hpuxtime|$linuxtime)\s+ (\d+)\s+(\d+)\s+(\d+)\s+($hpuxtime|$linuxtime) /x) { - print "block limit: $1: $2 > ($3 $4) $5\n"; + #print "block limit: $1: $2 > ($3 $4) $5\n"; $user = $1; $msg = warnmsg($mount, $2/1024, $3/1024, $4/1024, $5, "MB", $user); - print "file limit: $1: $6 > ($7 $8) $9\n"; + #print "file limit: $1: $6 > ($7 $8) $9\n"; $msg .= "\n\n" . warnmsg($mount, $6, $7, $8, $9, "Files", $user); } else { print "$mount: $.: unparseable: $_";