summaryrefslogtreecommitdiff
path: root/lib/chef
Commit message (Collapse)AuthorAgeFilesLines
* 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-261-19/+32
|
* changed the registry_key provider to scan collected registry keys with ↵JKerry2015-06-261-5/+5
| | | | downcased keys
* downcasted registry key names to lowercaseJKerry2015-06-261-2/+10
|
* 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
* | Fix issue where blocks were not considered in priority mappingjdm/3593Jay Mundrawala2015-06-251-1/+1
| | | | | | | | This should solve #3593
* | count skipped resources in among total resourcesRanjib Dey2015-06-251-1/+3
| |
* | Fix to allow LW resources to be used with HW providersjdm/lwrp-fixJay Mundrawala2015-06-241-1/+2
|/ | | | | | | | | | | | | | 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".
* Do not validate defaults, for backcompat purposesjk/property-baseJohn Keiser2015-06-231-1/+2
|
* Freeze default constantsJohn Keiser2015-06-231-0/+1
|
* Fix set_or_return order: default->coerce->validateJohn Keiser2015-06-231-31/+63
|
* Add some commentsJohn Keiser2015-06-231-13/+173
|
* Evaluate lazy defaults in context of the instanceJohn Keiser2015-06-231-3/+9
|
* Add coercionJohn Keiser2015-06-231-0/+8
|
* Add property_is_set?John Keiser2015-06-232-10/+26
|
* Ensure validators don't run against initial valuesJohn Keiser2015-06-231-0/+1
|
* Don't validate `nil` when setting the value to nilJohn Keiser2015-06-231-17/+22
|
* Allow values to be set to nil (override defaults) if user allows itJohn Keiser2015-06-232-53/+58
|
* Make "is" fail if you pass nil and don't validate itJohn Keiser2015-06-231-11/+8
|
* Add lazy to Resource class DSLJohn Keiser2015-06-231-0/+11
|
* Add property= setter to propertiesJohn Keiser2015-06-231-2/+8
|
* Add name_propertyJohn Keiser2015-06-231-6/+7
|
* Add property Type as an alias to isJohn Keiser2015-06-231-5/+18
|
* Add "is" to propertyJohn Keiser2015-06-232-97/+118
|
* Create property on resource, alias attribute to itJohn Keiser2015-06-233-16/+71
|
* Make load/include recipe run in child contextjk/resource_actionsJohn Keiser2015-06-231-3/+3
|
* Remove unnecessary TODOsJohn Keiser2015-06-231-5/+0
|
* Don't modify provider_for_action, just use "provider"John Keiser2015-06-231-2/+1
|
* Rename Chef::DSL::Recipe::Everything -> FullDSLJohn Keiser2015-06-235-12/+5
|
* Rename create_action_provider_class -> new_action_provider_classJohn Keiser2015-06-231-3/+3
|
* Delegate all necessary methods from ChildRunContext to RunContextJohn Keiser2015-06-231-6/+61
|
* Add comments and use def self.x instead of class<<selfJohn Keiser2015-06-234-69/+106
|
* Remove redundant default_action/allowed_actionsJohn Keiser2015-06-238-22/+0
|
* Create the `action :name do ... end` syntax for ResourceJohn Keiser2015-06-237-199/+309
|
* Give run contexts children instead of using external dupingJohn Keiser2015-06-234-122/+387
|
* Define the action() methodJohn Keiser2015-06-231-0/+36
|
* Add default_action and allowed_actions to Resource class, remove from LWRPJohn Keiser2015-06-239-0/+24
|
* Bump revision to 12.5.0.current.0jk/master12_5John Keiser2015-06-231-1/+1
|
* Get rid of warning when defining an LWRPjk/remove_lwrp_warningJohn Keiser2015-06-231-14/+13
|
* Merge pull request #3562 from coderanger/patch-2Jay Mundrawala2015-06-221-0/+4
|\ | | | | Re-add #priority.
| * Use the right call.Noah Kantrowitz2015-06-191-1/+1
| | | | | | set_priority_array is the right thing for this.
| * Re-add #priority.Noah Kantrowitz2015-06-191-0/+4
| | | | | | Possible fix for https://github.com/chef/chef/issues/3561.
* | Merge pull request #3538 from chef/jdm/fix-audit-excepJay Mundrawala2015-06-221-6/+12
|\ \ | |/ |/| Exceptions for audits should only get wrapped if audit mode is enabled
| * Exceptions for audits should only get wrapped if audit mode is enabledJay Mundrawala2015-06-161-6/+12
| |
* | Merge pull request #3554 from ranjib/fix_depsThom May2015-06-191-0/+1
|\ \ | | | | | | Add missing require statement in resource_resolver