summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-04-02 22:31:22 -0400
committerTim Smith <tsmith@chef.io>2018-04-02 22:31:22 -0400
commit4218892cff41425cfeda27701485a8754a6b25a8 (patch)
tree913bd8f5dd70b747a1ca052ba19623184c0334d3
parent454f51ee4f5fedf7b32506150566d80e458ba8fb (diff)
downloadchef-4218892cff41425cfeda27701485a8754a6b25a8.tar.gz
Don't fail on every hostname with windows
Look for periods instead of the regex value . Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/hostname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/hostname.rb b/lib/chef/resource/hostname.rb
index 497176f45d..243c86287b 100644
--- a/lib/chef/resource/hostname.rb
+++ b/lib/chef/resource/hostname.rb
@@ -203,7 +203,7 @@ class Chef
end
else # windows
- raise "Windows hostnames cannot contain a period." if new_resource.hostname.match?(/./)
+ raise "Windows hostnames cannot contain a period." if new_resource.hostname.match?(/\./)
# suppress EC2 config service from setting our hostname
if ::File.exist?('C:\Program Files\Amazon\Ec2ConfigService\Settings\config.xml')