Skip to content

Commit

Permalink
Add NDMP vbb and image backup types.
Browse files Browse the repository at this point in the history
Seems EMC uses a special type for NDMP backups named "vbb" which looks
analog to smtape and zfs we already had. Mirapoint has an "image"
backup type which also looks analog. So lets add these two types
and see how well things work out with these settings.
  • Loading branch information
Marco van Wieringen committed Nov 16, 2015
1 parent c657aeb commit a50b481
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dird/ndmp_dma.c
Expand Up @@ -184,6 +184,8 @@ static ndmp_backup_format_option ndmp_backup_format_options[] = {
{ (char *)"tar", true, false, true, true },
{ (char *)"smtape", false, true, false, true },
{ (char *)"zfs", false, true, false, true },
{ (char *)"vbb", false, true, false, true },
{ (char *)"image", false, true, false, true },
{ NULL, false, false, false }
};

Expand Down
2 changes: 2 additions & 0 deletions src/stored/ndmp_tape.c
Expand Up @@ -103,6 +103,8 @@ static ndmp_backup_format_option ndmp_backup_format_options[] = {
{ (char *)"tar", false },
{ (char *)"smtape", true },
{ (char *)"zfs", true },
{ (char *)"vbb", true },
{ (char *)"image", true },
{ NULL, false }
};

Expand Down

0 comments on commit a50b481

Please sign in to comment.