Merge branch 'collection_md5_file_size_0_support' into 'develop'

collection is not updated if the md5 file size of collection is 0

See merge request artica/pandorafms!5279
This commit is contained in:
Rafael Ameijeiras 2022-12-13 11:28:10 +00:00
commit 0cae4e5632
1 changed files with 5 additions and 0 deletions

View File

@ -2403,6 +2403,11 @@ sub check_collections () {
if (open (MD5_FILE, "< $ConfDir/collections/$collection_md5_file")) {
$local_collection_md5 = <MD5_FILE>;
close MD5_FILE;
if ( ! defined ($local_collection_md5) ) {
log_message ('Collection', "Size of $ConfDir/collections/$collection_md5_file is 0");
unlink ("$ConfDir/collections/$collection_md5_file");
$local_collection_md5 = "Size 0";
}
} else {
log_message ('Collection', "Could not open dir $ConfDir/collections/$collection_md5_file");
next;