summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* use delayed_action in accumulator speclcg/delayed_actionLamont Granquist2016-10-111-6/+2
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* add delayed_action to the Chef::Resource APILamont Granquist2016-10-111-0/+25
| | | | | | | | | | | | | | | | | | | | | effectively creates a resource which sends itself a delayed notification useful to create a resource which runs exactly once at the end of a run: ```ruby with_run_context :root do find_resource(:execute, "/bin/true") do action :nothing delayed_action :run end end ``` avoids using a log resource to force a resource to update and force a delayed notification which avoids the extra output from the log resource, and avoids the resource updated count always being updated. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version of chef to 12.15.24 by Chef Versioner.v12.15.24Chef Versioner2016-10-114-8/+8
|
* Merge pull request #5439 from chef/rhass/changelog_12.15Ryan Hass2016-10-111-3/+3
|\ | | | | Rhass/changelog 12.15
| * updating CHANGELOG with more details on exit code 213rhass/changelog_12.15Jeremy J. Miller2016-10-101-1/+1
| | | | | | | | Signed-off-by: Jeremy J. Miller <jm@chef.io>
| * Use v12.15.19 for 12.15 CHANGELOG.Ryan Hass2016-10-101-2/+2
| | | | | | | | Signed-off-by: Ryan Hass <rhass@chef.io>
* | Bump version of chef to 12.15.23 by Chef Versioner.v12.15.23Chef Versioner2016-10-114-8/+8
| |
* | Merge pull request #5421 from chef/tm/add_pr_templateThom May2016-10-111-0/+16
|\ \ | | | | | | add PR template
| * | add PR templatetm/add_pr_templateThom May2016-10-061-0/+16
| | | | | | | | | | | | Signed-off-by: Thom May <thom@chef.io>
* | | Bump version of chef to 12.15.22 by Chef Versioner.v12.15.22Chef Versioner2016-10-114-8/+8
| | |
* | | Merge pull request #5441 from chef/lcg/edit_resource_scopeLamont Granquist2016-10-112-2/+244
|\ \ \ | |_|/ |/| | Core: pass new_resource to edit_resource through instance_exec
| * | remove block_given?lcg/edit_resource_scopeLamont Granquist2016-10-101-2/+2
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | add some integration testing around accumulatorsLamont Granquist2016-10-101-0/+236
| | | | | | | | | | | | | | | | | | | | | probably also our best documentation on how to write accumulators right now Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | pass new_resource to edit_resource through instance_execLamont Granquist2016-10-101-1/+7
|/ / | | | | | | | | | | | | | | | | | | helps with scoping issues, best practice would be to always use the |new_resource| argument to the block when using edit_resource inside of resources https://github.com/chef/chef/issues/5438 Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 12.15.21 by Chef Versioner.v12.15.21Chef Versioner2016-10-074-8/+8
| |
* | Merge pull request #5431 from chef/lcg/remove-rewindLamont Granquist2016-10-072-3/+0
|\ \ | | | | | | chef-rewind: remove from integration gems (it was not in the testing matrix) as it is deprecated
| * | manually remove chef-rewind from the Gemfile.locklcg/remove-rewindLamont Granquist2016-10-071-2/+0
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | we haven't even been testing against chef-rewind for some timeLamont Granquist2016-10-071-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | and its now officially deprecated in its README: https://github.com/thommay/chef-rewind Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Bump version of chef to 12.15.20 by Chef Versioner.v12.15.20Chef Versioner2016-10-074-8/+8
| | |
* | | Merge pull request #5433 from chef/rhass/release_12.15.18Ryan Hass2016-10-071-0/+27
|\ \ \ | | | | | | | | Update changelog for 12.15.18 release.
| * | | Update changelog for 12.15.18 release.Ryan Hass2016-10-071-0/+27
|/ / / | | | | | | | | | Signed-off-by: Ryan Hass <rhass@chef.io>
* | | Bump version of chef to 12.15.19 by Chef Versioner.v12.15.19Chef Versioner2016-10-074-8/+8
| | |
* | | Merge pull request #5413 from ↵Ryan Hass2016-10-071-0/+14
|\ \ \ | |/ / |/| | | | | | | | MsysTechnologiesllc/vj/update_release_notes_for_cab_package_resource Updated release notes for cab_package resource and provider
| * | Updated release notes for cab_package resource and providerVasu11052016-10-061-0/+14
| | | | | | | | | | | | Signed-off-by: Vasu1105 <vasundhara.jagdale@msystechnologies.com>
* | | Bump version of chef to 12.15.18 by Chef Versioner.v12.15.18Chef Versioner2016-10-074-8/+8
| | |
* | | Merge pull request #5428 from jeremymv2/exit_code_213Thom May2016-10-073-0/+20
|\ \ \ | | | | | | | | Adding support for rfc 62 exit code 213
| * \ \ Merge branch 'exit_code_213' of github.com:jeremymv2/chef into exit_code_213Jeremy J. Miller2016-10-060-0/+0
| |\ \ \ | | | | | | | | | | | | | | | Signed-off-by: Jeremy J. Miller <jm@chef.io>
| | * \ \ Merge branch 'exit_code_213' of github.com:jeremymv2/chef into exit_code_213Jeremy J. Miller2016-10-060-0/+0
| | |\ \ \
| * | \ \ \ Merge branch 'exit_code_213' of github.com:jeremymv2/chef into exit_code_213Jeremy J. Miller2016-10-060-0/+0
| |\ \ \ \ \ | | |/ / / / | |/| / / / | | |/ / / Signed-off-by: Jeremy J. Miller <jm@chef.io>
| | * | | Adding support for rfc 62 exit code 213Jeremy J. Miller2016-10-063-0/+20
| | | | |
| * | | | Adding support for rfc 62 exit code 213Jeremy J. Miller2016-10-063-0/+20
| |/ / / | | | | | | | | | | | | Signed-off-by: Jeremy J. Miller <jm@chef.io>
* | | | Bump version of chef to 12.15.17 by Chef Versioner.v12.15.17Chef Versioner2016-10-074-8/+8
| | | |
* | | | Merge pull request #5427 from chef/lcg/cmdline-password-for-sudoLamont Granquist2016-10-071-0/+1
|\ \ \ \ | |/ / / |/| | | kinfe ssh: use the command line prompt for sudo if set
| * | | use the command line prompt for sudo if setlcg/cmdline-password-for-sudoLamont Granquist2016-10-061-0/+1
| | | | | | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | | Bump version of chef to 12.15.16 by Chef Versioner.v12.15.16Chef Versioner2016-10-064-8/+8
| | | |
* | | | Merge pull request #5423 from chef/lcg/manage-home-consistencyLamont Granquist2016-10-065-23/+19
|\ \ \ \ | |/ / / |/| | | Fix manage_home provider inconsistency for Mac and FreeBSD User providers
| * | | fix manage_home provider inconsistencylcg/manage-home-consistencyLamont Granquist2016-10-065-23/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on freebsd and mac we're now telling people to use `manage_home` instead of `supports[:manage_home]` but it doesn't actually work. fixes that so that it works now. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | | Bump version of chef to 12.15.15 by Chef Versioner.v12.15.15Chef Versioner2016-10-064-8/+8
| | | |
* | | | Merge pull request #5426 from chef/bump_testMatt Wrock2016-10-061-1/+1
|\ \ \ \ | |/ / / |/| | | small change to test bump bot
| * | | small change to test bump botMatt Wrock2016-10-061-1/+1
|/ / / | | | | | | | | | Signed-off-by: Matt Wrock <matt@mattwrock.com>
* | | Merge pull request #5418 from chef/lcg/learnchefLamont Granquist2016-10-069-37/+140
|\ \ \ | |_|/ |/| | add learnchef testing to travis matrix
| * | remove unnecessary skeleton files from test cookbookslcg/learnchefLamont Granquist2016-10-056-248/+0
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | add learnchef testing to travis matrixLamont Granquist2016-10-0515-37/+388
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Merge pull request #5417 from chef/lcg/issue5089Thom May2016-10-062-8/+22
|\ \ \ | | | | | | | | Fix for "Chefspec template rendering fails when cookbook_name != directory name"
| * | | redo of the redo of the patch to fix #5089lcg/issue5089Lamont Granquist2016-10-051-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | see discussion in: https://github.com/chef/chef/pull/5096 Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | | add a spec for the fix to #5089Lamont Granquist2016-10-051-0/+15
| | |/ | |/| | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Bump version of chef to 12.15.14 by Chef Versioner.v12.15.14Chef Versioner2016-10-064-8/+8
| | |
* | | Merge pull request #5406 from chef/shain/test_bumpMatt Wrock2016-10-061-1/+1
|\ \ \ | | | | | | | | Update omnibus pinning to pull in Solaris 11 pkg fix
| * | | Update omnibus pinningshain/test_bumpScott Hain2016-10-041-1/+1
| |/ / | | | | | | | | | Signed-off-by: Scott Hain <shain@chef.io>
* | | Bump version of chef to 12.15.13 by Chef Versioner.v12.15.13Chef Versioner2016-10-064-8/+8
| | |