added support for Pure-FTPD logs in the 'serv.pm' graph

This commit is contained in:
Jordi Sanfeliu 2013-11-06 14:48:37 +01:00
parent 6360067e89
commit d1c71bd77a
1 changed files with 5 additions and 0 deletions

View File

@ -283,6 +283,11 @@ sub serv_update {
$ftp++;
next;
}
# Pure-FTPd log
if(/ \[INFO\] .*? is now logged in/) {
$ftp++;
next;
}
}
}
close(IN);