diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-07-10 10:05:18 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-07-10 10:05:18 -0700 |
commit | 2a67b968b2506e559927b53e8904d4f76770376a (patch) | |
tree | 5ee4374cdbd787549351c03ffca65bb10378957c /omnibus | |
parent | b132e0a58478043605433fa2ccf8c4e7f090c8ec (diff) | |
download | chef-2a67b968b2506e559927b53e8904d4f76770376a.tar.gz |
move nokogiri config to omnibus
this hand-builds it with the software dep, and its not a direct dep of
chef itself and shouldn't be in the Gemfile.lock anyway, plus we need
to pin via omnibus_overrides.rb and double-pinning in the Gemfile.lock
is just added fussiness
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'omnibus')
-rw-r--r-- | omnibus/config/projects/chef.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/omnibus/config/projects/chef.rb b/omnibus/config/projects/chef.rb index 2342a7e186..751b7b342a 100644 --- a/omnibus/config/projects/chef.rb +++ b/omnibus/config/projects/chef.rb @@ -48,6 +48,9 @@ instance_eval(IO.read(overrides_path), overrides_path) dependency "preparation" dependency "chef" +# Nokogiri is an addon-extra we bundle and not a direct dep of chef itself +dependency "nokogiri" + # FIXME?: might make sense to move dependencies below into the omnibus-software chef # definition or into a chef-complete definition added to omnibus-software. dependency "gem-permissions" |