Skip to content

Commit

Permalink
Release 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
U-AMERICAS\Trevor_Squillario authored and U-AMERICAS\Trevor_Squillario committed Apr 25, 2023
1 parent f95aa13 commit 0ca3b56
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 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.5.1]() - 2023-04-25
### Fixed
- Fixed bug with RunLater Scheduled Discovery in New-OMEDiscovery ([Issue #11](https://github.com/dell/OpenManage-PowerShell-Modules/issues/11))

## [3.5.0]() - 2023-04-14
### Added
- Invoke-OMEQuickDeploy
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: 4/14/2023
# Generated on: 4/25/2023
#

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

# Version number of this module.
ModuleVersion = '3.5.0'
ModuleVersion = '3.5.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion DellOpenManage/Public/OME/New-OMEDiscovery.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function Get-DiscoverDevicePayload($Name, $HostList, $DeviceType, $DiscoveryUser
}
if ($Schedule.ToLower() -eq "runlater") {
$DiscoveryConfigPayload.Schedule.RunNow = $false
$DiscoveryConfigPayload.Schedule.RunLater = $true
$DiscoveryConfigPayload.Schedule | Add-Member -NotePropertyName RunLater -NotePropertyValue $true
$DiscoveryConfigPayload.Schedule.Cron = $ScheduleCron
}
return $DiscoveryConfigPayload
Expand Down

0 comments on commit 0ca3b56

Please sign in to comment.