diff options
author | Thom May <thom@chef.io> | 2016-06-24 15:27:24 +0100 |
---|---|---|
committer | Thom May <thom@chef.io> | 2016-06-24 15:28:39 +0100 |
commit | f06d2eb5c3100fb567a39148a2c414f653c5d20e (patch) | |
tree | b8b742f8d2ae9c62be5668a6e02f86558b72757a /spec | |
parent | 20774deff25b952ff24d6e6d100007713dcbf005 (diff) | |
download | chef-f06d2eb5c3100fb567a39148a2c414f653c5d20e.tar.gz |
Ensure that chef-solo uses the expected repo dirtm/correct_repo_path
Solo has always defaulted to `/var/chef` but local-mode uses the user's
home directory, so we need to ensure that we set the correct path before
entering local-mode.
Fixes: #5051
Signed-off-by: Thom May <thom@may.lt>
Diffstat (limited to 'spec')
-rw-r--r-- | spec/unit/application/solo_spec.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/unit/application/solo_spec.rb b/spec/unit/application/solo_spec.rb index bb29261f5a..b1931414cc 100644 --- a/spec/unit/application/solo_spec.rb +++ b/spec/unit/application/solo_spec.rb @@ -212,6 +212,13 @@ Enable chef-client interval runs by setting `:client_fork = true` in your config end end + it "sets the repo path" do + expect(Chef::Config).to receive(:find_chef_repo_path).and_return("/var/chef") + app.reconfigure + expect(Chef::Config.has_key?(:chef_repo_path)).to be_truthy + expect(Chef::Config[:chef_repo_path]).to eq ("/var/chef") + end + it "runs chef-client in local mode" do allow(app).to receive(:setup_application).and_return(true) allow(app).to receive(:run_application).and_return(true) |