Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mxproxmox: Add Windows jobs
Add Windows jobs as requested by our Windows admins.

We have to code this manually, because /etc/mxproxmox/backup-list.dat
targets full projects and we only want subfolders here.
  • Loading branch information
donald committed Jan 1, 2023
1 parent ae1c858 commit aacc755
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mxproxmox/mxproxmox
Expand Up @@ -220,6 +220,14 @@ sub cmd_local_backups {
my ($ident, $path) = @$p;
push @jobs, $p if $ident =~ /^home_/;
push @jobs, [$ident, $path, $INCLUDE{$ident}] if exists $INCLUDE{$ident};
if ($ident eq 'prj_acrbkps') {
push @jobs, [ 'acrb_adchef', "$path/Tmp/ADChef" ]; # 68G
push @jobs, [ 'acrb_winhome', "$path/Tmp/WINHOME" ]; # 108G
push @jobs, [ 'acrb_winhype-a', "$path/Tmp/WINHYPE-A" , 2684354560 ]; # 1.9T -> 2.5T -> 2684354560k
push @jobs, [ 'acrb_winhype-c', "$path/Tmp/WINHYPE-c" , 6979321856 ]; # 5.4T -> 6.5T -> 6979321856k
push @jobs, [ 'acrb_wincert', "$path/Tmp/WinCert" ]; # 19G
push @jobs, [ 'acrb_winsccm', "$path/Tmp/WinSCCM" ]; # 680G
}

}
for my $p (@jobs) {
Expand Down

0 comments on commit aacc755

Please sign in to comment.