diff options
author | skylerto <skylerclayne@gmail.com> | 2021-05-18 10:12:16 -0400 |
---|---|---|
committer | skylerto <skylerclayne@gmail.com> | 2021-05-18 10:12:26 -0400 |
commit | 92cc4324bb72e304b29195744ff805a13356ad47 (patch) | |
tree | 6f5d4a1a9e5b78a2b3865cfb1b073bf460f3078f /knife | |
parent | 79f6c3914c04d7c022eefbc3e7005f91d196317e (diff) | |
download | chef-92cc4324bb72e304b29195744ff805a13356ad47.tar.gz |
adds unix_bootstrap and windows_bootstrap path configs
Adds the bootstrap path configs, taking feedback from #11189
resolving #10964 and #10367
Signed-off-by: skylerto <skylerclayne@gmail.com>
Diffstat (limited to 'knife')
4 files changed, 14 insertions, 14 deletions
diff --git a/knife/lib/chef/knife/core/bootstrap_context.rb b/knife/lib/chef/knife/core/bootstrap_context.rb index 0d71aa8dc3..d012f27dac 100644 --- a/knife/lib/chef/knife/core/bootstrap_context.rb +++ b/knife/lib/chef/knife/core/bootstrap_context.rb @@ -171,12 +171,12 @@ class Chef client_rb << "fips true\n" end - unless chef_config[:file_cache_path].nil? - client_rb << "file_cache_path \"#{chef_config[:file_cache_path]}\"\n" + unless chef_config[:unix_bootstrap_file_cache_path].nil? + client_rb << "file_cache_path \"#{chef_config[:unix_bootstrap_file_cache_path]}\"\n" end - unless chef_config[:file_backup_path].nil? - client_rb << "file_backup_path \"#{chef_config[:file_backup_path]}\"\n" + unless chef_config[:unix_bootstrap_file_backup_path].nil? + client_rb << "file_backup_path \"#{chef_config[:unix_bootstrap_file_backup_path]}\"\n" end client_rb diff --git a/knife/lib/chef/knife/core/windows_bootstrap_context.rb b/knife/lib/chef/knife/core/windows_bootstrap_context.rb index 2904a231a5..61307501d4 100644 --- a/knife/lib/chef/knife/core/windows_bootstrap_context.rb +++ b/knife/lib/chef/knife/core/windows_bootstrap_context.rb @@ -71,8 +71,8 @@ class Chef client_rb = <<~CONFIG chef_server_url "#{chef_config[:chef_server_url]}" validation_client_name "#{chef_config[:validation_client_name]}" - file_cache_path "#{ChefConfig::PathHelper.escapepath(ChefConfig::Config.var_chef_dir(windows: true))}\\\\cache" - file_backup_path "#{ChefConfig::PathHelper.escapepath(ChefConfig::Config.var_chef_dir(windows: true))}\\\\backup" + file_cache_path "#{chef_config[:windows_bootstrap_file_cache_path]}" + file_backup_path "#{chef_config[:windows_bootstrap_file_backup_path]}" cache_options ({:path => "#{ChefConfig::PathHelper.escapepath(ChefConfig::Config.etc_chef_dir(windows: true))}\\\\cache\\\\checksums", :skip_expires => true}) CONFIG diff --git a/knife/spec/unit/knife/core/bootstrap_context_spec.rb b/knife/spec/unit/knife/core/bootstrap_context_spec.rb index 79fddc8184..97cbc7a259 100644 --- a/knife/spec/unit/knife/core/bootstrap_context_spec.rb +++ b/knife/spec/unit/knife/core/bootstrap_context_spec.rb @@ -80,16 +80,16 @@ describe Chef::Knife::Core::BootstrapContext do end end - describe "when file_cache_path is set" do - let(:chef_config) { { file_cache_path: "/home/opscode/cache" } } - it "sets file_cache_path in the generated config file" do + describe "when unix_bootstrap_file_cache_path is set" do + let(:chef_config) { { unix_bootstrap_file_cache_path: "/home/opscode/cache" } } + it "sets unix_bootstrap_file_cache_path in the generated config file" do expect(bootstrap_context.config_content).to include("file_cache_path \"/home/opscode/cache\"") end end - describe "when file_backup_path is set" do - let(:chef_config) { { file_backup_path: "/home/opscode/backup" } } - it "sets file_backup_path in the generated config file" do + describe "when unix_bootstrap_file_backup_path is set" do + let(:chef_config) { { unix_bootstrap_file_backup_path: "/home/opscode/backup" } } + it "sets unix_bootstrap_file_backup_path in the generated config file" do expect(bootstrap_context.config_content).to include("file_backup_path \"/home/opscode/backup\"") end end diff --git a/knife/spec/unit/knife/core/windows_bootstrap_context_spec.rb b/knife/spec/unit/knife/core/windows_bootstrap_context_spec.rb index af656facf0..61d349a93d 100644 --- a/knife/spec/unit/knife/core/windows_bootstrap_context_spec.rb +++ b/knife/spec/unit/knife/core/windows_bootstrap_context_spec.rb @@ -154,8 +154,8 @@ describe Chef::Knife::Core::WindowsBootstrapContext do config_log_location: STDOUT, chef_server_url: "http://chef.example.com:4444", validation_client_name: "chef-validator-testing", - file_cache_path: "c:/chef/cache", - file_backup_path: "c:/chef/backup", + windows_bootstrap_file_cache_path: "c:/chef/cache", + windows_bootstrap_file_backup_path: "c:/chef/backup", cache_options: ({ path: "c:/chef/cache/checksums", skip_expires: true }) ) ) |