summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-09-21 09:51:34 -0700
committerTim Smith <tsmith@chef.io>2018-09-21 09:51:34 -0700
commitc48046d23f75e2d43fc52e2d6e3a5bd9e9f7e320 (patch)
tree9c6d1952e4c2dc6864503b9f462550ca5fcc66d9 /lib
parenteb8d88f62cbfc70c8dc431c4eccf0ab48c9130b5 (diff)
downloadchef-c48046d23f75e2d43fc52e2d6e3a5bd9e9f7e320.tar.gz
Fix failures in windows_ad_join in 14.5.27
I 1/2 renamed this property name. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/resource/windows_ad_join.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_ad_join.rb b/lib/chef/resource/windows_ad_join.rb
index 2399a5d6d5..cb0f43e9d1 100644
--- a/lib/chef/resource/windows_ad_join.rb
+++ b/lib/chef/resource/windows_ad_join.rb
@@ -68,7 +68,7 @@ class Chef
cmd << "$credential = New-Object System.Management.Automation.PSCredential (\"#{new_resource.domain_user}\",$pswd);"
cmd << "Add-Computer -DomainName #{new_resource.domain_name} -Credential $credential"
cmd << " -OUPath \"#{new_resource.ou_path}\"" if new_resource.ou_path
- cmd << " -NewName \"#{new_resource.new_name}\"" if new_resource.new_name
+ cmd << " -NewName \"#{new_resource.new_hostname}\"" if new_resource.new_hostname
cmd << " -Force"
converge_by("join Active Directory domain #{new_resource.domain_name}") do