Skip to content

Commit 67f9dcc

Browse files
authored
Merge branch 'master' into cl-dev
2 parents 26c1c7b + d2f50f3 commit 67f9dcc

File tree

4 files changed

+1053
-52
lines changed

4 files changed

+1053
-52
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ Export-RubrikDatabasesJobFile - DN Test.json
66
.devcontainer/Dockerfile
77
.devcontainer/devcontainer.json
88
.devcontainer/library-scripts/common-debian.sh
9+
vcenter_cred*.xml
10+
settings.json

Azure/Invoke-AzureBlobsProtect.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,12 @@ Connect-Rubrik $RubrikServer -Credential $RubrikCred
6060
$mv = Get-RubrikManagedVolume -Name $MVName
6161
$mv | Start-RubrikManagedVolumeSnapshot
6262

63-
$AzCopyFullPath = ".\AzCopy.exe"
63+
$AzCopyFullPath = ".\azcopy.exe"
6464
if ($AzCopyPath) {
6565
$AzCopyFullPath = Join-Path -Path $AzCopyPath -ChildPath "AzCopy.exe"
6666
}
6767

68-
Invoke-Expression $AzCopyFullPath cp "$SourceBlobsContainer" "$TargetMV" --recursive
68+
$Command = "$AzCopyFullPath copy '$SourceBlobsContainer' '$TargetMV' --recursive"
69+
Invoke-Expression $Command
6970

7071
$mv | Stop-RubrikManagedVolumeSnapshot

0 commit comments

Comments
 (0)