summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Move workstation_config_loader into chef-configmcquin/chef-config/workstation-config-loaderClaire McQuin2015-06-296-175/+202
|
* Merge pull request #3600 from coderanger/patch-4Thom May2015-06-291-0/+6
|\ | | | | Add myself as a core maintainer.
| * Add myself as a core maintainer.Noah Kantrowitz2015-06-251-0/+6
| | | | | | I would really rather we split the DSL and Resource machinery in to a component because I'm definitely not able to call myself a maintainer for the "and everything else" part, but waiting to get my patches merged it getting annoying :-)
* | Merge pull request #3606 from chef/jdm/pin-ffiJay Mundrawala2015-06-261-1/+1
|\ \ | | | | | | FFI 1.9.9 is causing segfaults
| * | FFI 1.9.9 is causing segfaultsjdm/pin-ffiJay Mundrawala2015-06-261-1/+1
|/ /
* | Update CHANGELOGS.Kartik Null Cating-Subramanian2015-06-261-0/+10
| |
* | The wording seemed odd.jjasghar/needed_theJJ Asghar2015-06-261-1/+1
| | | | | | | | Added the word "the" and it now reads much better.
* | Missing require (require what you use).jk/missing_requireJohn Keiser2015-06-261-0/+1
| |
* | remove extraneous spaceDave Eddy2015-06-261-1/+1
| |
* | correcting minor typo in user_edit knife actionNell Shamrell2015-06-261-2/+1
| |
* | Issue #3080: powershell_script: do not allow suppression of syntax errorsadamedx/ps-syntax-always-raiseadamedx2015-06-262-22/+35
| |
* | changed the registry_key provider to scan collected registry keys with ↵JKerry2015-06-263-6/+32
| | | | | | | | downcased keys
* | downcasted registry key names to lowercaseJKerry2015-06-262-2/+22
| |
* | Merge pull request #3587 from coderanger/patch-3Ranjib Dey2015-06-261-0/+7
|\ \ | | | | | | Fix deprecated setters.
| * | Fix deprecated setters.Noah Kantrowitz2015-06-241-0/+7
| | | | | | | | | Adds actual implementation for deprecated setters, and re-adds the accidentally removed resource_collection= setter.
* | | Merge pull request #3589 from chef/tm/fix_bashismsThom May2015-06-261-4/+4
|\ \ \ | |_|/ |/| | Fix some errant bashisms
| * | Fix some errant bashismstm/fix_bashismsThom May2015-06-251-4/+4
| |/ | | | | | | Fixes #3408
* | Merge branch 'jdm/changelog'Jay Mundrawala2015-06-251-1/+4
|\ \
| * | Add CHANGELOG entry for #3593Jay Mundrawala2015-06-251-0/+1
| | |
| * | Added CHANGELOG entry for #3586Jay Mundrawala2015-06-251-1/+3
| | |
* | | Merge pull request #3599 from chef/jdm/3593Jay Mundrawala2015-06-252-1/+13
|\ \ \ | |/ / | | | Fix issue where blocks were not considered in priority mapping
| * | Fix issue where blocks were not considered in priority mappingjdm/3593Jay Mundrawala2015-06-251-1/+1
| | | | | | | | | | | | This should solve #3593
| * | Added spec to check that blocks gain priority for resolutionJay Mundrawala2015-06-251-0/+12
|/ /
* | Merge pull request #3525 from chef/jtimberman/rfc-tier-maintainersBryan McLellan2015-06-252-4/+105
|\ \ | | | | | | add maintainers/Lts for tier 1 & 2 support
| * | Add Lamont as a maintainer for ArchLinuxjtimberman/rfc-tier-maintainersjtimberman2015-06-252-0/+13
| | |
| * | Thom maintainer for OmniOS, Lamont Lt for AIXjtimberman2015-06-202-4/+15
| | |
| * | add maintainers/Lts for tier 1 & 2 supportjtimberman2015-06-202-0/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Per the RFC submitted in chef-rfc PR 131: https://github.com/chef/chef-rfc/pull/131 We need lieutenants, maintainers for all the tier 1 and tier 2 platforms. Thom May and Lamont Granquist have volunteered for various platforms.
* | | count skipped resources in among total resourcesRanjib Dey2015-06-252-1/+5
| | |
* | | Merge pull request #3586 from chef/jdm/lwrp-fixJay Mundrawala2015-06-252-1/+27
|\ \ \ | |_|/ |/| | Fix to allow LW resources to be used with HW providers
| * | Fix to allow LW resources to be used with HW providersjdm/lwrp-fixJay Mundrawala2015-06-242-1/+27
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | This should fix sethvargo-cookbooks/swap#22 Here's what was happening: The cookbooks creates a Resource using the LWRP base. This dynamically creates a class. We used to create this class with the name Chef::Resource::SomeResourceName. In 12.4, this change to something like "LWRP resource some_resource_name from cookbook CookbookName". When searching for a provider, it couldn't be found because it wasn't explicitly set, as it would have been if it was a LW provider, and it wasn't found in Chef::Provider, because Chef::Provider had a provider SomeResourceName instead of "LWRP resource some_resource_name from cookbook CookbookName".
* | Merge branch 'jk/property-base'John Keiser2015-06-236-131/+2415
|\ \
| * | Do not validate defaults, for backcompat purposesjk/property-baseJohn Keiser2015-06-232-21/+39
| | |
| * | Freeze default constantsJohn Keiser2015-06-232-2/+7
| | |
| * | Fix set_or_return order: default->coerce->validateJohn Keiser2015-06-233-147/+188
| | |
| * | Add some commentsJohn Keiser2015-06-231-13/+173
| | |
| * | Evaluate lazy defaults in context of the instanceJohn Keiser2015-06-232-30/+29
| | |
| * | Add coercionJohn Keiser2015-06-232-81/+89
| | |
| * | Add property_is_set?John Keiser2015-06-234-135/+145
| | |
| * | Ensure validators don't run against initial valuesJohn Keiser2015-06-232-0/+4
| | |
| * | Don't validate `nil` when setting the value to nilJohn Keiser2015-06-233-36/+59
| | |
| * | Allow values to be set to nil (override defaults) if user allows itJohn Keiser2015-06-234-85/+186
| | |
| * | Make "is" fail if you pass nil and don't validate itJohn Keiser2015-06-232-70/+95
| | |
| * | Add lazy to Resource class DSLJohn Keiser2015-06-232-8/+15
| | |
| * | Add property= setter to propertiesJohn Keiser2015-06-232-21/+27
| | |
| * | Add name_propertyJohn Keiser2015-06-233-10/+10
| | |
| * | Add property Type as an alias to isJohn Keiser2015-06-234-55/+106
| | |
| * | Add "is" to propertyJohn Keiser2015-06-234-156/+175
| | |
| * | Create property on resource, alias attribute to itJohn Keiser2015-06-236-16/+1823
|/ /
* | Merge branch 'jk/resource_actions'John Keiser2015-06-2315-213/+1214
|\ \
| * | Make load/include recipe run in child contextjk/resource_actionsJohn Keiser2015-06-235-3/+60
| | |