Plugin supports now Disaster recovery jobs
This commit is contained in:
parent
823879e9f9
commit
2fa081a4ba
@ -50,8 +50,10 @@ class BackupReportsXoPlugin {
|
|||||||
const text = []
|
const text = []
|
||||||
|
|
||||||
forEach(status.calls, call => {
|
forEach(status.calls, call => {
|
||||||
// Ignore call if it's not a Backup or a Snapshot.
|
// Ignore call if it's not a Backup a Snapshot or a Disaster Recovery.
|
||||||
if (call.method !== 'vm.rollingBackup' && call.method !== 'vm.rollingSnapshot') {
|
if (call.method !== 'vm.rollingBackup' &&
|
||||||
|
call.method !== 'vm.rollingSnapshot' &&
|
||||||
|
call.method !== 'vm.rollingDrCopy') {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user