From 0ea21b686f594b0d5e3bdb053d2cbecb449ea23c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 12 Aug 2014 14:07:16 -0700 Subject: [PATCH] Update chef_client.html.md --- website/docs/source/v2/provisioning/chef_client.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/source/v2/provisioning/chef_client.html.md b/website/docs/source/v2/provisioning/chef_client.html.md index fa8e2aa6e..a22ddcc47 100644 --- a/website/docs/source/v2/provisioning/chef_client.html.md +++ b/website/docs/source/v2/provisioning/chef_client.html.md @@ -33,7 +33,7 @@ that the node can register with the Chef Server: ```ruby Vagrant.configure("2") do |config| config.vm.provision "chef_client" do |chef| - chef.chef_server_url = "http://mychefserver.com:4000/" + chef.chef_server_url = "http://mychefserver.com" chef.validation_key_path = "validation.pem" end end