Skip to content
Snippets Groups Projects
Commit 8dc360ae authored by Tim Steiner's avatar Tim Steiner
Browse files

Ignore load checks when CommVault backups are running.

parent ebe27562
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,11 @@ if ($load_status eq 'GOOD')
}
}
# if there is a CommVault backup in progress, ignore the load until its done
if (`ps aux | grep clBackup | grep -v grep`) {
$load_status = 'GOOD';
}
# load_status is the first check, so that's our starting health indicator
my $overall_health=$load_status;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment