diff --git a/plugins/system/uptime_bsd b/plugins/system/uptime_bsd index 840d61bb..2dedb023 100755 --- a/plugins/system/uptime_bsd +++ b/plugins/system/uptime_bsd @@ -47,13 +47,13 @@ use Date::Parse; my $kern=`sysctl -n kern.version`; $kern=~ /:\s+(.*\S)\s+\w+\@/; -print "Compile: $1\n"; +#print "Compile: $1\n"; $kern=str2time($1); my $boot=`sysctl -n kern.boottime`; # OpenBSD will return seconds from the epoch if ($ostype ne "OpenBSD") { $boot=~ / sec = (\d+)/; - print "Boot: $1\n"; + #print "Boot: $1\n"; $boot=$1; }