delete cache file if it contains one line only

git-svn-id: http://svn.centreon.com/trunk/plugins-2.x@11630 6bcd3966-0018-0410-8128-fd23d134de7e
This commit is contained in:
Sylvestre Ho 2011-02-08 16:52:17 +00:00
parent a80ff21388
commit 615fc0a245
1 changed files with 5 additions and 2 deletions

View File

@ -288,7 +288,7 @@ if ($opt_n) {
}
my $expr = "";
if ($opt_d =~ m/^[A-Za-z]:/) {
if ($opt_d =~ m/^[A-Za-z]:/i) {
$opt_d =~ s/\\/\\\\/g;
$expr = "^$opt_d";
}elsif ($opt_d =~ m/^\//) {
@ -308,6 +308,9 @@ if ($opt_n) {
}
$countLine++;
}
if ($countLine == 1) {
unlink($cacheFile);
}
close(FILE);
}