summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 12.16.0rhass/12.16.0Ryan Hass2016-10-134-8/+8
| | | | Signed-off-by: Ryan Hass <rhass@chef.io>
* Bump version of chef to 12.15.27 by Chef Versioner.v12.15.27Chef Versioner2016-10-134-8/+8
|
* Merge pull request #5446 from chef/lcg/tweak-delayed-action-apiLamont Granquist2016-10-131-15/+9
|\ | | | | Core: make delayed_action argument mandatory, remove misleading ivar introduced in PR that added delayed_action
| * make arg to delayed_action requiredlcg/tweak-delayed-action-apiLamont Granquist2016-10-121-1/+1
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * remove misleading @delayed_action ivarLamont Granquist2016-10-121-14/+8
|/ | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version of chef to 12.15.26 by Chef Versioner.v12.15.26Chef Versioner2016-10-124-8/+8
|
* Merge pull request #5434 from chef/rhass/release_12.15.18Ryan Hass2016-10-121-34/+11
|\ | | | | Update RELEASE_NOTES.md for 12.15 Release.
| * Merge branch 'master' into rhass/release_12.15.18rhass/release_12.15.18Ryan Hass2016-10-117-10/+268
| |\ | | | | | | | | | | | | | | | [ci skip] Signed-off-by: Ryan Hass <rhass@chef.io>
| * | slightly more clear knife ssh sudo password descriptionLamont Granquist2016-10-101-1/+1
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | fixed up url formatJeremy J. Miller2016-10-101-1/+1
| | | | | | | | | | | | Signed-off-by: Jeremy J. Miller <jm@chef.io>
| * | updating RELEASE_NOTES with more info about exit code 213Jeremy J. Miller2016-10-101-1/+2
| | | | | | | | | | | | Signed-off-by: Jeremy J. Miller <jm@chef.io>
| * | updating CHANGELOG with more details on exit code 213Jeremy J. Miller2016-10-101-1/+1
| | | | | | | | | | | | Signed-off-by: Jeremy J. Miller <jm@chef.io>
| * | Update RELEASE_NOTES.md for 12.15 Release.Ryan Hass2016-10-072-36/+12
| | | | | | | | | | | | | | | | | | [ci skip] Signed-off-by: Ryan Hass <rhass@chef.io>
* | | Bump version of chef to 12.15.25 by Chef Versioner.v12.15.25Chef Versioner2016-10-124-8/+8
| | |
* | | Merge pull request #5443 from chef/lcg/delayed_actionLamont Granquist2016-10-122-6/+27
|\ \ \ | |_|/ |/| | Core: add delayed_action to the Chef::Resource API
| * | 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
| | | |