win_domain - fix for checking for domain on new host (#55195)
(cherry picked from commit 6039ff9a24
)
This commit is contained in:
parent
a3f1fda8de
commit
2fab4dd204
2 changed files with 4 additions and 1 deletions
2
changelogs/fragments/win_domain-setup.yaml
Normal file
2
changelogs/fragments/win_domain-setup.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- win_domain - Fix checking for a domain introduced in a recent patch
|
|
@ -61,7 +61,8 @@ try {
|
|||
# Cannot use Get-ADForest as that requires credential delegation, the below does not
|
||||
$forest_context = New-Object -TypeName System.DirectoryServices.ActiveDirectory.DirectoryContext -ArgumentList Forest, $dns_domain_name
|
||||
$forest = [System.DirectoryServices.ActiveDirectory.Forest]::GetForest($forest_context)
|
||||
} catch [System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException] { }
|
||||
} catch [System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException] {
|
||||
} catch [System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException] { }
|
||||
|
||||
If(-not $forest) {
|
||||
$result.changed = $true
|
||||
|
|
Loading…
Reference in a new issue