mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Adding "-SyncWindow 0" flag to Compare-Object call (#34656)
Adding "-SyncWindow 0" flag to the Compare-Object call used to determine if the existing and proposed IP address lists are the same. This makes the array comparison mark changes in order as a difference. Fix for bug #34651
This commit is contained in:
committed by
Jordan Borean
parent
2d4a43bb0a
commit
bb9dcb0d2b
@@ -140,7 +140,7 @@ Function Get-DnsClientMatch {
|
||||
}
|
||||
|
||||
Else {
|
||||
$v4_match = @(Compare-Object $current_dns_v4 $ipv4_addresses).Count -eq 0
|
||||
$v4_match = @(Compare-Object $current_dns_v4 $ipv4_addresses -SyncWindow 0).Count -eq 0
|
||||
}
|
||||
|
||||
# TODO: implement IPv6
|
||||
|
||||
Reference in New Issue
Block a user