diff options
author | Tim Smith <tsmith@chef.io> | 2020-02-24 10:28:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-24 10:28:46 -0800 |
commit | 945b2a4721c6f2e850b578aed1185a705ef843f2 (patch) | |
tree | 35d2ecfd0e1a87e2129257a9bc8d4c69249b739f /spec | |
parent | eb75334c2e47e36e8bfcda0c3bdb4d90e5df91c5 (diff) | |
parent | ad11b22afc103a5957a5dfcdf2d175be088ebcc1 (diff) | |
download | chef-945b2a4721c6f2e850b578aed1185a705ef843f2.tar.gz |
Merge pull request #9371 from cinc-project/dist_bootstrap
Add distro constants to the bootstrap templates to support non-Chef distros
Diffstat (limited to 'spec')
-rw-r--r-- | spec/unit/knife/core/windows_bootstrap_context_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/knife/core/windows_bootstrap_context_spec.rb b/spec/unit/knife/core/windows_bootstrap_context_spec.rb index e5a4e955e8..2c538975e8 100644 --- a/spec/unit/knife/core/windows_bootstrap_context_spec.rb +++ b/spec/unit/knife/core/windows_bootstrap_context_spec.rb @@ -164,9 +164,9 @@ describe Chef::Knife::Core::WindowsBootstrapContext do expected = <<~EXPECTED echo.chef_server_url "http://chef.example.com:4444" echo.validation_client_name "chef-validator-testing" - echo.file_cache_path "c:/chef/cache" - echo.file_backup_path "c:/chef/backup" - echo.cache_options ^({:path =^> "c:/chef/cache/checksums", :skip_expires =^> true}^) + echo.file_cache_path "C:/chef/cache" + echo.file_backup_path "C:/chef/backup" + echo.cache_options ^({:path =^> "C:/chef/cache/checksums", :skip_expires =^> true}^) echo.# Using default node name ^(fqdn^) echo.log_level :info echo.log_location STDOUT |