Updates t processing and acknowledge PCI additions

This commit is contained in:
SimonFair
2025-11-16 20:27:54 +00:00
parent 7408b6ec2d
commit 914c0055d9
3 changed files with 136 additions and 74 deletions

View File

@@ -776,6 +776,20 @@ if (file_exists($graphql)) {
anonymize_email($graphql);
}
// copy sriov log
$sriov = "/var/log/sriov";
if (file_exists($sriov)) {
$log = "/$diag/logs/sriov.txt";
run("todos <$sriov >".escapeshellarg($log));
}
// copy sriov log
$srioverrors = "/var/log/sriov-errors";
if (file_exists($srioverrors)) {
$log = "/$diag/logs/sriov-errors.txt";
run("todos <$srioverrors >".escapeshellarg($log));
}
// copy vfio-pci log
$vfiopci = "/var/log/vfio-pci";
if (file_exists($vfiopci)) {