diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-03-08 08:33:41 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-04-05 22:35:53 -0700 |
commit | e9af51e0cbcbeab606e8154dc271aa956a0d5744 (patch) | |
tree | 48a2f1178e6aaa242bf8491f92ea17076c932f38 /lib/chef/knife | |
parent | b74d7a53addf42a2be56b262cb1207ffedf48f78 (diff) | |
download | chef-e9af51e0cbcbeab606e8154dc271aa956a0d5744.tar.gz |
savegame
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/knife')
-rw-r--r-- | lib/chef/knife/configure.rb | 4 | ||||
-rw-r--r-- | lib/chef/knife/configure_client.rb | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/lib/chef/knife/configure.rb b/lib/chef/knife/configure.rb index 48007bbee7..967a18de87 100644 --- a/lib/chef/knife/configure.rb +++ b/lib/chef/knife/configure.rb @@ -1,6 +1,6 @@ # # Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2009-2016, Chef Software Inc. +# Copyright:: Copyright 2009-2017, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -75,8 +75,6 @@ class Chef ::File.open(config[:config_file], "w") do |f| f.puts <<-EOH -log_level :info -log_location STDOUT node_name '#{new_client_name}' client_key '#{new_client_key}' validation_client_name '#{validation_client_name}' diff --git a/lib/chef/knife/configure_client.rb b/lib/chef/knife/configure_client.rb index 7d0b3d260d..c015687ac7 100644 --- a/lib/chef/knife/configure_client.rb +++ b/lib/chef/knife/configure_client.rb @@ -1,6 +1,6 @@ # # Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2009-2016, Chef Software Inc. +# Copyright:: Copyright 2009-2017, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -34,8 +34,6 @@ class Chef FileUtils.mkdir_p(@config_dir) ui.info("Writing client.rb") File.open(File.join(@config_dir, "client.rb"), "w") do |file| - file.puts("log_level :info") - file.puts("log_location STDOUT") file.puts("chef_server_url '#{Chef::Config[:chef_server_url]}'") file.puts("validation_client_name '#{Chef::Config[:validation_client_name]}'") end |