summaryrefslogtreecommitdiff
path: root/chef-config/lib
Commit message (Collapse)AuthorAgeFilesLines
* Bump version of chef to 13.1.15 by Chef Versioner.v13.1.15Chef Versioner2017-05-121-1/+1
|
* Bump version of chef to 13.1.14 by Chef Versioner.v13.1.14Chef Versioner2017-05-111-1/+1
|
* Bump version of chef to 13.1.13 by Chef Versioner.v13.1.13Chef Versioner2017-05-111-1/+1
|
* Bump version of chef to 13.1.12 by Chef Versioner.v13.1.12Chef Versioner2017-05-101-1/+1
|
* Bump version of chef to 13.1.11 by Chef Versioner.v13.1.11Chef Versioner2017-05-081-1/+1
|
* Bump version of chef to 13.1.10 by Chef Versioner.v13.1.10Chef Versioner2017-05-081-1/+1
|
* Bump version of chef to 13.1.9 by Chef Versioner.Chef Versioner2017-05-041-1/+1
|
* Bump version of chef to 13.1.8 by Chef Versioner.v13.1.8Chef Versioner2017-05-021-1/+1
|
* Bump version of chef to 13.1.7 by Chef Versioner.v13.1.7Chef Versioner2017-04-281-1/+1
|
* Bump version of chef to 13.1.6 by Chef Versioner.v13.1.6Chef Versioner2017-04-261-1/+1
|
* Bump version of chef to 13.1.5 by Chef Versioner.v13.1.5Chef Versioner2017-04-221-1/+1
|
* Bump version of chef to 13.1.4 by Chef Versioner.v13.1.4Chef Versioner2017-04-211-1/+1
|
* Bump version of chef to 13.1.3 by Chef Versioner.v13.1.3Chef Versioner2017-04-211-1/+1
|
* Bump version back to 13.1Thom May2017-04-211-1/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* Bump version of chef to 13.0.123 by Chef Versioner.v13.0.123Chef Versioner2017-04-201-1/+1
|
* Bump version of chef to 13.0.122 by Chef Versioner.v13.0.122Chef Versioner2017-04-201-1/+1
|
* Bump version of chef to 13.0.121 by Chef Versioner.v13.0.121Chef Versioner2017-04-191-1/+1
|
* Bump version of chef to 13.0.120 by Chef Versioner.v13.0.120Chef Versioner2017-04-141-1/+1
|
* Bump version of chef to 13.0.119 by Chef Versioner.v13.0.119Chef Versioner2017-04-121-1/+1
|
* Bump version of chef to 13.0.118 by Chef Versioner.v13.0.118Chef Versioner2017-04-121-1/+1
|
* Bump version of chef to 13.0.117 by Chef Versioner.v13.0.117Chef Versioner2017-04-121-1/+1
|
* Bump version of chef to 13.0.116 by Chef Versioner.v13.0.116Chef Versioner2017-04-111-1/+1
|
* Bump version of chef to 13.0.115 by Chef Versioner.v13.0.115Chef Versioner2017-04-111-1/+1
|
* push version back to 13.0Thom May2017-04-111-1/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* Bump version of chef to 13.1.2 by Chef Versioner.v13.1.2Chef Versioner2017-04-101-1/+1
|
* Bump version of chef to 13.1.1 by Chef Versioner.v13.1.1Chef Versioner2017-04-101-1/+1
|
* Bump version of chef to 13.0.113 by Chef Versioner.v13.0.113Chef Versioner2017-04-061-1/+1
|
* Bump version of chef to 13.0.112 by Chef Versioner.v13.0.112Chef Versioner2017-04-061-1/+1
|
* Bump version of chef to 13.0.111 by Chef Versioner.v13.0.111Chef Versioner2017-04-061-1/+1
|
* Bump version of chef to 13.0.110 by Chef Versioner.v13.0.110Chef Versioner2017-04-061-1/+1
|
* Chef-13: shell_out PATH fixes and path_sanity changesLamont Granquist2017-04-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Turns out polluting PATH with a global path_sanity actually tends to cause problems via picking up stuff from e.g. embedded/bin when users don't want it. This change unsets the default setting to add path sanity. We already have the difference between internal and external uses of shell_out, so what this does is take the internal use of shell_out and always apply the PATH -- so anything calling shell_out gets path_sanity. It also modifies path_sanity to prepend the ruby bin and the embedded bin into the PATH. When we need those for internal use we really want those first. Users who don't want path sanity at all can do: shell_out_with_systems_locale(*whatever) or: shell_out(*whatever, env: { "PATH" => ENV['PATH'] }) Next PR I want to add: shell_out(*whatever, internal: false) Default will still be true though. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version of chef to 13.0.109 by Chef Versioner.v13.0.109Chef Versioner2017-04-061-1/+1
|
* Bump version of chef to 13.0.108 by Chef Versioner.v13.0.108Chef Versioner2017-04-061-1/+1
|
* Bump version of chef to 13.0.107 by Chef Versioner.v13.0.107Chef Versioner2017-04-061-1/+1
|
* Chef-13: better solution to gem_package source issueslcg/chef-13-gem-package-take-2Lamont Granquist2017-04-051-1/+1
| | | | | | | | | | | | | | | | | | | | | I think this is better - Chef::Config[:rubygems_uri] is nearly always applied (but could be set to nil if someone really wanted to opt-out) - the per-resources sources are additive on top of the global config (lets cookbooks be additive to global config rather than override it by default). - there's a new flag for if you want to opt-out of the global config completely on a per-resource basis. So I think this gets the most commmon and the next most common use cases correct, while still allow people with arbitrarily crazy needs to write resources that do it. The RELEASE_NOTES also have somewhat better user stories in them, which I think suggests that I'm on the right track here. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version of chef to 13.0.106 by Chef Versioner.v13.0.106Chef Versioner2017-04-051-1/+1
|
* Bump version of chef to 13.0.105 by Chef Versioner.v13.0.105Chef Versioner2017-04-051-1/+1
|
* Bump version of chef to 13.0.104 by Chef Versioner.Chef Versioner2017-04-051-1/+1
|
* Merge pull request #6017 from chef/tm/ohai_plugins_2Thom May2017-04-051-0/+4
|\ | | | | RFC 59 - Load ohai plugins
| * RFC 59: Load Ohai pluginstm/ohai_plugins_2Thom May2017-04-051-0/+4
| | | | | | | | | | | | This adds a new phase in the compilation of the run context. Signed-off-by: Thom May <thom@chef.io>
* | Bump version of chef to 13.0.103 by Chef Versioner.v13.0.103Chef Versioner2017-04-051-1/+1
| |
* | Bump version of chef to 13.0.102 by Chef Versioner.v13.0.102Chef Versioner2017-04-051-1/+1
|/
* Bump version of chef to 13.0.101 by Chef Versioner.Chef Versioner2017-04-051-1/+1
|
* Bump version of chef to 13.0.100 by Chef Versioner.v13.0.100Chef Versioner2017-04-051-1/+1
|
* Bump version of chef to 13.0.99 by Chef Versioner.v13.0.99Chef Versioner2017-04-051-1/+1
|
* Bump version of chef to 13.0.98 by Chef Versioner.v13.0.98Chef Versioner2017-04-041-1/+1
|
* Bump version of chef to 13.0.97 by Chef Versioner.v13.0.97Chef Versioner2017-04-041-1/+1
|
* Bump version of chef to 13.0.96 by Chef Versioner.v13.0.96Chef Versioner2017-04-041-1/+1
|
* Bump version of chef to 13.0.95 by Chef Versioner.v13.0.95Chef Versioner2017-04-041-1/+1
|
* Bump version of chef to 13.0.94 by Chef Versioner.v13.0.94Chef Versioner2017-04-041-1/+1
|