Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | spec to ensure deleting ENV[var] from current process worksjdmundrawala/delete-env | Jay Mundrawala | 2014-10-21 | 1 | -0/+9 |
| | |||||
* | Ensure delete ENV[var] from current process | Jay Mundrawala | 2014-10-21 | 1 | -2/+4 |
| | |||||
* | Merge pull request #2259 from kwilczynski/chef-2258 | Serdar Sutay | 2014-10-21 | 2 | -10/+37 |
|\ | | | | | Fix value of retries shown in the error report. | ||||
| * | Fix value of retries shown in the error report. | Krzysztof Wilczynski | 2014-10-19 | 2 | -10/+37 |
| | | | | | | | | | | | | Fixes #2258. Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com> | ||||
* | | Merge pull request #2266 from opscode/sersut/chef-rc-fixes-2 | Serdar Sutay | 2014-10-21 | 1 | -2/+2 |
|\ \ | | | | | | | Missed one spec in rpm_spec.rb. | ||||
| * | | Missed one spec in rpm_spec.rb.sersut/chef-rc-fixes-2 | Serdar Sutay | 2014-10-20 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #2263 from opscode/sersut/chef-rc-fixes | Serdar Sutay | 2014-10-20 | 10 | -8/+22 |
|\ \ \ | |/ / | | | | Misc RC spec fixes that we ran into in CI. | ||||
| * | | Disable data bag encryption v3 specs on ruby 1.9.X.sersut/chef-rc-fixes | Serdar Sutay | 2014-10-20 | 4 | -5/+5 |
| | | | |||||
| * | | Refer to rpm assets with the full path in specs. | Serdar Sutay | 2014-10-20 | 2 | -2/+4 |
| | | | |||||
| * | | Fix cron specs on Solaris. | Serdar Sutay | 2014-10-20 | 1 | -1/+7 |
| | | | |||||
| * | | Set the :default_guard_interpreter to :default so that the script resource ↵ | Serdar Sutay | 2014-10-20 | 1 | -0/+1 |
| | | | | | | | | | | | | guards are executed correctly. | ||||
| * | | Correctly turn off version 3 data bag encryption specs on windows. | Serdar Sutay | 2014-10-20 | 4 | -3/+8 |
| |/ | |||||
* | | Merge pull request #2257 from opscode/lcg/rest-test-speedup | Lamont Granquist | 2014-10-20 | 1 | -75/+79 |
|\ \ | |/ |/| | speed up rest test | ||||
| * | rspec-3-ifylcg/rest-test-speedup | Lamont Granquist | 2014-10-20 | 1 | -74/+74 |
| | | |||||
| * | speed up rest test | Lamont Granquist | 2014-10-18 | 1 | -1/+5 |
|/ | | | | eliminate the sleep + retry delays on the other failing test as well | ||||
* | Merge pull request #2216 from opscode/tball/bsd_package_name | Tyler Ball | 2014-10-17 | 16 | -307/+617 |
|\ | | | | | Notify a resource by the `resource[name]` key it was written as | ||||
| * | 1) No longer allowing multiple args passed to ResourceCollection#<< 2) ↵ | tyler-ball | 2014-10-17 | 4 | -72/+19 |
| | | | | | | | | removing ResourceCollection#insert_at | ||||
| * | Fixing ruby 1.9.3 build errorstball/bsd_package_name | tyler-ball | 2014-10-17 | 1 | -5/+8 |
| | | |||||
| * | Cleaning up based on review comments | tyler-ball | 2014-10-17 | 5 | -217/+199 |
| | | |||||
| * | Added some documentation and cleaned up unecessary TODOs. Added first round ↵ | tyler-ball | 2014-10-16 | 5 | -22/+249 |
| | | | | | | | | of specs for the new classes. | ||||
| * | Moving resource_set and resource_list so they are hidden from consumers more ↵ | tyler-ball | 2014-10-16 | 3 | -2/+3 |
| | | | | | | | | since we don't want to change the resource_collection API yet | ||||
| * | Refactoring ResourceCollection interface to be backwards compatiable, all ↵ | tyler-ball | 2014-10-16 | 22 | -236/+286 |
| | | | | | | | | specs continue to pass, removing ResourceSet and ResourceList from consumer knowledge | ||||
| * | Removing all traces of 'created_as_type' since that fix is no longer necessary | tyler-ball | 2014-10-16 | 2 | -18/+0 |
| | | |||||
| * | Finishing all code changes to split resource collection into 2 data containers | tyler-ball | 2014-10-16 | 17 | -184/+131 |
| | | |||||
| * | first attempt at refactoring ResourceCollection into two objects | tyler-ball | 2014-10-16 | 6 | -174/+345 |
| | | |||||
* | | Merge pull request #2223 from opscode/sersut/execute-guard-interpreter | Serdar Sutay | 2014-10-16 | 10 | -56/+183 |
|\ \ | | | | | | | Guards of execute resource doesn't inherit command options from its parent resource | ||||
| * | | CHANGELOG update for execute resource guards inheriting parent resource ↵ | Serdar Sutay | 2014-10-16 | 1 | -0/+2 |
| | | | | | | | | | | | | attributes. | ||||
| * | | Error message update from PR comments. | Serdar Sutay | 2014-10-16 | 2 | -2/+2 |
| | | | |||||
| * | | Differentiate between the default and the user set guard_attributes in order ↵ | Serdar Sutay | 2014-10-16 | 3 | -27/+35 |
| | | | | | | | | | | | | to be able to warn users correctly when they configure a guard_attribute but use a ruby block in the guard. | ||||
| * | | Enable guard_interpreters for the execute resource and set the default ↵ | Serdar Sutay | 2014-10-16 | 6 | -44/+177 |
| | | | | | | | | | | | | | | | | | | interpreter for the execute resource to be :execute. This ensures that attributes of the resource like :environment & :cwd can be inherited by the guard when guard is specified as a string. | ||||
| * | | Remove the "path" attribute from "execute" resource which has never been ↵ | Serdar Sutay | 2014-10-16 | 2 | -16/+0 |
|/ / | | | | | | | backed by any providers. | ||||
* | | Merge pull request #2222 from opscode/mcquin/centos-locale-a | Claire McQuin | 2014-10-16 | 3 | -7/+111 |
|\ \ | | | | | | | Better handling of locale -a output | ||||
| * | | Update for :internal_locale detectionmcquin/centos-locale-a | Claire McQuin | 2014-10-16 | 1 | -0/+1 |
| | | | |||||
| * | | Merge branch 'master' into mcquin/centos-locale-a | Claire McQuin | 2014-10-16 | 13 | -65/+185 |
| |\ \ | |||||
| * | | | Use shell_out to get locales | Claire McQuin | 2014-10-15 | 2 | -11/+102 |
| | | | | |||||
| * | | | Standardize guessed locale | Claire McQuin | 2014-10-13 | 1 | -1/+4 |
| | | | | |||||
| * | | | Split locale -a result safely, detect utf8, log message to debug. | Claire McQuin | 2014-10-13 | 1 | -4/+13 |
| | | | | |||||
* | | | | Merge pull request #2238 from opscode/sersut/chef-2174 | Serdar Sutay | 2014-10-16 | 2 | -0/+10 |
|\ \ \ \ | | | | | | | | | | | Return correct value for tagged? when node[:tags] is nil. | ||||
| * | | | | Add a unit test to check tagged? method with default node object.sersut/chef-2174 | Serdar Sutay | 2014-10-16 | 1 | -0/+8 |
| | | | | | |||||
| * | | | | Return correct value for tagged? when node[:tags] is nil. | Serdar Sutay | 2014-10-15 | 1 | -0/+2 |
| | | | | | |||||
* | | | | | Merge pull request #2185 from opscode/lcg/definition-retval | Lamont Granquist | 2014-10-16 | 4 | -45/+51 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | return whatever the definition returns | ||||
| * | | | | add md file | Lamont Granquist | 2014-10-16 | 1 | -0/+1 |
| | | | | | |||||
| * | | | | add test for retval from definition | Lamont Granquist | 2014-10-16 | 1 | -0/+11 |
| | | | | | |||||
| * | | | | convert to rspec 3 | Lamont Granquist | 2014-10-16 | 1 | -40/+38 |
| | | | | | |||||
| * | | | | return whatever the definition returns | Lamont Granquist | 2014-10-16 | 1 | -5/+1 |
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | this can allow method chaining so that if you call a definition to create a resource, and the definition takes the time to return the resource as its retval, then you can hang a .not_if off of the definition (or .only_if/.notifies/.subscribes/etc) | ||||
* | | | | Merge pull request #2231 from opscode/lcg/remove-shellout-require | Lamont Granquist | 2014-10-16 | 1 | -4/+0 |
|\ \ \ \ | | | | | | | | | | | remove chef/shell_out dep | ||||
| * | | | | remove chef/shell_out deplcg/remove-shellout-require | Lamont Granquist | 2014-10-14 | 1 | -4/+0 |
| |/ / / | | | | | | | | | | | | | seems like we can drop this require for chef-12 | ||||
* | | | | Merge pull request #2241 from opscode/cdoherty-eliminate-spec-remnants | Chris Doherty | 2014-10-16 | 1 | -0/+2 |
|\ \ \ \ | |_|_|/ |/| | | | Don't leave spec tempfiles in people's source roots. | ||||
| * | | | file_spec: chdir into the temp directory so we don't leave test files in the ↵cdoherty-eliminate-spec-remnants | Chris Doherty | 2014-10-15 | 1 | -0/+2 |
|/ / / | | | | | | | | | | source root. | ||||
* | | | Merge pull request #2233 from juliandunn/windows-10 | Julian C. Dunn | 2014-10-15 | 2 | -0/+3 |
|\ \ \ | |/ / |/| | | Added Windows 10 (Server and workstation) to the marketing names version table. |