==================================================================
Please DO NOT REPLY to this mail or send email to the developers
about this bug. Please follow-up to Bugzilla using this
link:http://bugs.contribs.org/show_bug.cgi?id=8395
Have you checked the Frequently Asked Questions (FAQ)?
http://wiki.contribs.org/SME_Server:Documentation:FAQ
Please also take the time to read the following useful guide:
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
==================================================================
--- Comment #7 from Ray Mitchell <[email protected]> ---
(In reply to Nicola Tiana from comment #6)
As an experiment I downgraded the rsync package from 3.1.0-1.el5.rfx to
3.0.9-2.el5.rfx
rpm -e --nodeps rsync
yum update rsync --excluderepo=smeupdates
post upgrade & reboot
The overnight affa backup ran & I do not see the unusual display in the report
for May 28
D 4 | Mon 2014 May 19 01:39 | 0h09m25s | 332816 | 311GB | 31kB |
| D 3 | Tue 2014 May 20 01:40 | 0h10m45s | 332911 | 311GB | 31kB
|
| D 2 | Thu 2014 May 22 01:43 | 0h13m06s | 333075 | 312GB | 35kB
|
| D 1 | Sat 2014 May 24 01:43 | 0h13m06s | 333,269 (reg: 306,211, dir:
26,994, link: 64) | 334B | 36B |
| D 0 | Sun 2014 May 25 01:40 | 0h10m53s | 333,356 (reg: 306,298, dir:
26,994, link: 64) | 334B | 33B |
+-------+-----------------------+-----------+----------------+--------+--------+
| S 1 | Mon 2014 May 26 01:38 | 0h08m45s | 333,383 (reg: 306,325, dir:
26,994, link: 64) | 334B | 32B |
| S 0 | Wed 2014 May 28 01:42 | 0h12m43s | 333637 | 312GB | 38kB
|
I still got this email from Cron Daemon
Argument "333,269 (reg: 306,211, dir: 26,994, link: 64)" isn't numeric in
numeric gt (>) at /sbin/e-smith/affa line 2935.
Argument "333,356 (reg: 306,298, dir: 26,994, link: 64)" isn't numeric in
numeric gt (>) at /sbin/e-smith/affa line 2935.
Argument "333,383 (reg: 306,325, dir: 26,994, link: 64)" isn't numeric in
numeric gt (>) at /sbin/e-smith/affa line 2935.
which appears to be referring to the report entry lines for May 24, May 25 &
May 26, although the May 28 report line has displayed normally
Line 2935 of /sbin/e-smith/affa says:
if( $count > 10*1000*1000*1000 )
in this snippet of code
sub countUnit($)
{
my $count = shift(@_);
my $unit = "";
if( $count > 10*1000*1000*1000 )
{
$count = int($count/1000/1000/1000);
$unit = " * 10E9";
}
elsif( $count > 10*1000*1000 )
{
$count = int($count/1000/1000);
$unit = " * 10E6";
}
$count .= "$unit";
return $count;
It seems somehow related to your findings in the other bug report mentioned.
--
You are receiving this mail because:
You are the QA Contact for the bug.
_______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at http://lists.contribs.org/mailman/public/contribteam/