summaryrefslogtreecommitdiff
path: root/lib/chef
Commit message (Collapse)AuthorAgeFilesLines
* DRY the service priorities a bitJohn Keiser2015-06-021-74/+52
|
* Fix resource unit testJohn Keiser2015-06-022-4/+5
|
* Make resource deprecation warnings once-only; fix recipe DSL tests back upJohn Keiser2015-06-022-1/+1
|
* Put homebrew and macports together in an explicit priority arrayJohn Keiser2015-06-023-7/+7
|
* Narrow resolvers to only look at parts of the map we supportJohn Keiser2015-06-029-123/+154
|
* Use the central priority map for `provides`John Keiser2015-06-0215-129/+366
|
* Merge pull request #3412 from chef/sd/CI-31Thom May2015-06-026-11/+51
|\ | | | | Make sure the audit mode output is reflected both in the logs and in the formatter output.
| * Minor updates for PR comments.sd/CI-31Serdar Sutay2015-05-292-5/+3
| |
| * Make sure the audit mode output is reflected both in the logs and in the ↵Serdar Sutay2015-05-296-10/+52
| | | | | | | | formatter output.
* | Add default_action and allowed_actions to Resource class, remove from LWRPJohn Keiser2015-06-0137-111/+167
| |
* | Drop support for rubygems 1.xdrop-rubygems-1.xdanielsdeleo2015-06-011-8/+1
| | | | | | | | | | Ruby 2.0 is the oldest release we support, and it ships with Rubygems 2.0: https://github.com/ruby/ruby/blob/v2_0_0_0/lib/rubygems.rb#L11
* | Deprecate provider_basejk/resource_nameJohn Keiser2015-06-012-2/+11
| |
* | Add use_automatic_resource_nameJohn Keiser2015-06-0166-66/+86
| |
* | Make resource_name call providesJohn Keiser2015-06-0165-59/+75
| |
* | Toss an error if a resource without a resource_name is createdJohn Keiser2015-06-011-0/+7
| |
* | Fix Chef version # for deprecationJohn Keiser2015-06-011-1/+1
| |
* | Move resource_name up to Resource, and figure out its value automaticallyJohn Keiser2015-06-0167-182/+74
| |
* | Merge branch 'master' into namelessNoah Kantrowitz2015-05-2925-272/+930
|\ \
| * | Allow knife sub-command loader to match platform specific gems.Torben Knerr2015-05-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes issue #3272. The underlying issue was that "-x86-mingw32"-platform suffixed chef gem (as it is installed on windows) was filtered out by the regex. Thus it was detected as being "not from this chef version". The PR adapts the regex and adds some valid / invalid specs for it.
| * | Use executionpolicy Bypass in powershell_script provider for PS 3.0 and lateradamedx2015-05-292-3/+14
| | |
| * | powershell_script provider readability fixesAdam Edwards2015-05-291-38/+46
| | |
| * | Simplify powershell_script exit status logicAdam Edwards2015-05-291-6/+3
| | |
| * | powershell_script script wrapper comment improvementsAdam Edwards2015-05-291-6/+33
| | |
| * | Refactor powershell_script, additional powershell syntax testsAdam Edwards2015-05-291-71/+81
| | |
| * | Get specs to passAdam Edwards2015-05-291-20/+54
| | |
| * | change executionpolicy to unrestrictedLamont Granquist2015-05-291-1/+1
| | |
| * | fix missing requiresLamont Granquist2015-05-291-0/+3
| | |
| * | include powershell_out in DSL placesLamont Granquist2015-05-293-0/+6
| | |
| * | add powershell_out mixinLamont Granquist2015-05-292-2/+100
| | |
| * | Fix dsc_resource to work with WMF 5 April Previewjdm/wmfJay Mundrawala2015-05-291-1/+8
| |/
| * Make audit comments nicer!John Keiser2015-05-281-9/+23
| |
| * Move notification methods back to ClientJohn Keiser2015-05-282-107/+83
| |
| * Don't use deprecated "runner" in RunContext itselfJohn Keiser2015-05-281-1/+1
| |
| * Fix up deprecated_attr_*, add testsJohn Keiser2015-05-281-20/+16
| |
| * Don't require a file we are already inJohn Keiser2015-05-281-2/+0
| |
| * Un-deprecate node writingJohn Keiser2015-05-281-2/+4
| |
| * Deprecate some things that don't seem to be needed outsideJohn Keiser2015-05-282-31/+72
| |
| * Move public APIs first, private secondJohn Keiser2015-05-282-274/+308
| |
| * Comment the heck out of Chef::ClientJohn Keiser2015-05-281-44/+384
| |
| * remove cruftClaire McQuin2015-05-271-2/+0
| |
| * Give captured exception a meaningful nameClaire McQuin2015-05-271-5/+5
| |
| * Raise errors at the end of the client run, for proper exiting.Claire McQuin2015-05-271-24/+25
| |
| * remove configuration optionClaire McQuin2015-05-273-19/+14
| |
| * Revert "Add CLI option --audit-as-warning"Claire McQuin2015-05-271-5/+0
| | | | | | | | This reverts commit 6e88071320032ad18f3b7d5940673f4ad6563c5d.
| * Add CLI option --audit-as-warningClaire McQuin2015-05-271-0/+5
| |
| * Skip adding backtrace to error message if unset.Claire McQuin2015-05-271-1/+5
| |
| * Remove unused method definitionClaire McQuin2015-05-271-4/+0
| |
| * Save and report audit phase failure on run_completed or run_failed.Claire McQuin2015-05-272-4/+13
| |
| * Mark run failed on failed audits unless configured to audit as warning.Claire McQuin2015-05-273-9/+22
| | | | | | | | Remove unnecessary newline from RunFailedWrappingError backtrace
| * Fix backups on windows for the file resourceJay Mundrawala2015-05-271-1/+9
| | | | | | | | | | | | | | | | The backup utility was using Dir.[], which on breaks with \ in the path name. This code is replaces with listing the directory and matching the correct files This should solve #3394.