summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Address review feedbacksalam/relnoteSalim Alam2015-12-021-4/+4
|
* Update RELEASE_NOTESSalim Alam2015-12-021-0/+19
|
* Merge pull request #4219 from chef/salam/chef-releaseSalim Alam2015-12-016-12/+54
|\ | | | | Prepping for release of Chef 12.6.0
| * Bump version to 12.6.0Salim Alam2015-12-014-4/+4
| |
| * Update DOC_CHANGES: remove chocolatey_package, add info for ksh resourceSalim Alam2015-12-011-6/+16
| |
| * Update CHANGELOGSalim Alam2015-12-011-2/+34
| |
* | Merge pull request #4218 from chef/lcg/release-notesLamont Granquist2015-12-011-68/+26
|\ \ | |/ |/| add some 12.6.0 release notes [ci skip]
| * add some 12.6.0 release notes [ci skip]lcg/release-notesLamont Granquist2015-12-011-68/+26
|/
* Merge pull request #3790 from chef/jdm/travis-sudoJay Mundrawala2015-12-014-3/+11
|\ | | | | A lot of our tests require sudo
| * Add note as to why ifconfig_spec is disabled in travisjdm/travis-sudoJay Mundrawala2015-11-301-0/+2
| |
| * Add note as to why mount_spec is not running in travisJay Mundrawala2015-11-301-0/+2
| |
| * Only run as sudo for tests that need itJay Mundrawala2015-11-251-0/+3
| |
| * Skip mount test in travisJay Mundrawala2015-11-251-1/+1
| |
| * Skip ifconfig tests in travisJay Mundrawala2015-11-251-1/+1
| |
| * Add tag to skip travisJay Mundrawala2015-11-251-0/+1
| |
| * Run tests as sudoJay Mundrawala2015-11-251-2/+2
| |
* | Merge pull request #4183 from chef/lcg/extract-declare-resource-mixinLamont Granquist2015-12-015-91/+152
|\ \ | | | | | | extract declare_resource to a mixin and extend API
| * | add CHANGLOG.mdlcg/extract-declare-resource-mixinLamont Granquist2015-12-011-0/+1
| | |
| * | extract declare_resource to a mixin and extend APILamont Granquist2015-12-014-91/+151
|/ / | | | | | | | | | | | | - extract to its own mixin so it can be included without method_missing and the rest of the resources DSL - add ability to inject different run_context - add ability to create_if_missing into the resource_collection
* | Merge pull request #4206 from chef/lcg/fix-rspec-ctrl-cLamont Granquist2015-11-252-2/+8
|\ \ | | | | | | fix rspecs-ctrl-c
| * | restore the old signal handler hereLamont Granquist2015-11-251-1/+5
| | |
| * | fix rspecs-ctrl-clcg/fix-rspec-ctrl-cLamont Granquist2015-11-251-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we can't fork off tinyserver without a lot of work in the test codebase, so instead save a copy of the old rspec signal handler and then after tinyserver has started (and we're sure that rack has scribbled over the signal handler), restore the rspec signal handler. there's an obvious race if someone hits ctrl-c after tinyserver has scribbled over the sigint handler but before we restore it, but this is 99.9% better of a solution than nothing.
* | | Update CHANGELOG.md for #4052, #3810Bryan McLellan2015-11-251-12/+12
| | | | | | | | | | | | | | | Closes #4052, Closes #4070 Closes #3810
* | | Fix wrong variable name in error messageBryan McLellan2015-11-251-1/+1
| | |
* | | GH-1909 Add validation for chef_server_urlSarah Michaelson2015-11-252-2/+17
| | |
* | | Add make_child_entry in ChefFS CookbookSubdirMaxime Brugidou2015-11-252-0/+39
| | | | | | | | | | | | Following a517fa8a we can't call `child` on cookbook subdirs.
* | | Merge pull request #4153 from matschaffer/patch-1Thom May2015-11-251-1/+1
|\ \ \ | |/ / |/| | Require ShellOut before Knife::SSH definition
| * | Require ShellOut before Knife::SSH definitionMat Schaffer2015-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | I ran into a NameError when trying to run https://github.com/matschaffer/knife-solo/blob/master/test/knife_bootstrap_test.rb#L14 that I think this should fix. My suspicion is that under normal operation shell_out gets required via the application or platform. And prior to moving config into its own project it was being required in chef/config.rb In my tests since I end up loading knife ssh directly without the surrounding application things don't work out. I'll likely just add a line to my test helper for now but wanted to open this for comment or future improvement.
* | | Merge pull request #4203 from ↵Lamont Granquist2015-11-241-10/+13
|\ \ \ | | | | | | | | | | | | | | | | chef/lcg/service-provider-new-resource-mutation-fix add better docs on why we mutate the new-resource in the service provider for reporting
| * | | add better documentation to this methodLamont Granquist2015-11-241-10/+13
|/ / / | | | | | | | | | | | | it violates our dont-violate-the-new-resource policy for a reason, but is likely still buggy if the resource gets reused.
* | | Merge branch 'jk/proxy-tests'John Keiser2015-11-241-0/+18
|\ \ \ | |_|/ |/| |
| * | Use bundle to access the bundled chef-clientjk/proxy-testsJohn Keiser2015-11-241-4/+3
| | |
| * | Add proxy test to TravisJohn Keiser2015-11-241-0/+19
|/ /
* | Merge pull request #4200 from chef/jdm/dont-print-pscredJay Mundrawala2015-11-243-6/+30
|\ \ | | | | | | Prevent inspect on PsCredential from printing out plain text password
| * | Prevent inspect on PsCredential from printing out plain text passwordjdm/dont-print-pscredJay Mundrawala2015-11-233-6/+30
| | |
* | | CHANGELOG.md updates for #4160, #3848Bryan McLellan2015-11-232-0/+9
| | | | | | | | | | | | | | | Closes #4160 Closes #3848
* | | Correcting regex for upstart_stateJustin Seubert2015-11-232-3/+22
| | |
* | | Fix testsJeff Blaine2015-11-232-12/+12
| | |
* | | DTRT re: identity_fileJeff Blaine2015-11-232-14/+12
| | |
* | | Migrate to --ssh-identity-file instead of --identity-fileJeff Blaine2015-11-232-3/+13
|/ / | | | | | | | | | | | | | | | | | | | | | | Fixes #3434 Introduces --ssh-identity-file which is more like the other SSH arguments (they all begin with --ssh except this one). Behavior is unchanged. Migrates '-i' over with --ssh-identity-file Retains --identity-file with a deprecation statement.
* | Merge pull request #4185 from chef/lcg/dpkg-refactorLamont Granquist2015-11-203-145/+220
|\ \ | | | | | | dpkg provider cleanup
| * | add CHANGELOG.mdlcg/dpkg-refactorLamont Granquist2015-11-201-0/+1
| | |
| * | dpkg provider cleanupLamont Granquist2015-11-202-145/+219
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | - :update and :install are now treated the same way and throw the same exceptions - :remove and :purge don't require the source at all, so don't do any checking on that - fix some convoluted side-effecty logic in load_current_resource - load_current_resource now correctly gets the dpkg state on :remove and :purge when the file does not exist (pretty sure the old logic did not) - fixed the FIXME about using en_US.UTF-8 (the default for shell_out!) - just use shell_out! to throw exceptions - clean up all the specs and remove all the instance vars from the code
* | Merge pull request #4188 from chef/salam/dsc-resource-fixSalim Alam2015-11-201-4/+9
|\ \ | | | | | | Update dsc_resource to use verbose stream output
| * | Update dsc_resource to use verbose stream outputsalam/dsc-resource-fixSalim Alam2015-11-191-4/+9
| | |
* | | Merge pull request #4192 from 5apps-caboose/fix_typoBryan McLellan2015-11-201-1/+1
|\ \ \ | | | | | | | | Fix typo in comment
| * | | Fix typo in commentGreg Karékinian2015-11-201-1/+1
|/ / / | | | | | | | | | | | | | | | s/vlaue/value/ Obvious fix.
* | | Merge pull request #4187 from martinb3/add_links_ircNoah Kantrowitz2015-11-191-2/+4
|\ \ \ | |/ / |/| | Documentation update: add README.md links to join IRC channels
| * | Add links to jump directly to IRCMartin Smith2015-11-191-2/+4
|/ / | | | | | | Per btm's suggestion and the conversation at today's Developers Meeting, add some links to easy ways to join IRC and view read-only channel logs.
* | Merge branch 'invitations-and-members'John Keiser2015-11-189-237/+196
|\ \