Skip to content

Commit

Permalink
Release 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorSquillario committed Jan 23, 2023
1 parent f1b3dec commit 04c5720
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.3.3]() - 2023-01-23
### Fixed
- Fixed typo in Invoke-OMEApplianceBackup

## [3.3.2]() - 2023-01-20
### Changed
- Changed Invoke-OMEApplianceBackupRestore to Invoke-OMEApplianceBackup only. Restore must be done in OME-M at this time.
Expand Down
4 changes: 2 additions & 2 deletions DellOpenManage/DellOpenManage.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Trevor Squillario <[email protected]>
#
# Generated on: 1/20/2023
# Generated on: 1/23/2023
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'DellOpenManage.psm1'

# Version number of this module.
ModuleVersion = '3.3.2'
ModuleVersion = '3.3.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
8 changes: 4 additions & 4 deletions DellOpenManage/Public/OME/Invoke-OMEApplianceBackup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ function Get-BackupJobPayload($Name, $Description, $Share, $SharePath, $ShareTyp
"shareAddress" = $Share
"device_id" = $DeviceId.ToString()
"userName" = $UserName
"password" = if ($Password) {
"password" = $(if ($Password) {
$PasswordText = (New-Object PSCredential "user", $Password).GetNetworkCredential().Password
$PasswordText
}
"encryption_password" = if ($EncryptionPassword) {
})
"encryption_password" = $(if ($EncryptionPassword) {
$EncryptionPasswordText = (New-Object PSCredential "user", $EncryptionPassword).GetNetworkCredential().Password
$EncryptionPasswordText
}
})
"includePasswords" = $(if ($IncludePw) { "true" } else { "false"})
"includeCertificates" = $(if ($IncludeCertificates) { "true" } else { "false"})
}
Expand Down

0 comments on commit 04c5720

Please sign in to comment.