Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
Directory
narfight
bynarfight, September 20, 2017
cmd: /usr/bin/tftp -v 192.168.100.13 69 -c get DO_NOT_REMOVE_TEST_CENTREON.txt
sent request for file 'DO_NOT_REMOVE_TEST_CENTREON.txt'
tftp: Error code 1: File not found
OK: fetched empty file from tftp server '192.168.100.13:69', not a great test, recommend to use a file with content instead
sent request for file 'DO_NOT_REMOVE_TEST_CENTREON.txt'
tftp: Error code 1: File not found
OK: fetched empty file from tftp server '192.168.100.13:69', not a great test, recommend to use a file with content instead
bynarfight, September 4, 2017
to be compatible with the jobs "backup copy"
Add this after "$status = $job.GetLastResult()" :
if ($status -eq "None")
{
$status = (Get-VBRBackupSession -Name $job.name | sort -Descending)[1].Result
}
(Source : https://forums.veeam.com/powershell-f26/result-value-from-backup-copy-jobs-is-always-none-t20512.html#p186505)
Add this after "$status = $job.GetLastResult()" :
if ($status -eq "None")
{
$status = (Get-VBRBackupSession -Name $job.name | sort -Descending)[1].Result
}
(Source : https://forums.veeam.com/powershell-f26/result-value-from-backup-copy-jobs-is-always-none-t20512.html#p186505)