summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4069 from tas50/messagingjk/coerce-nilLamont Granquist2015-10-2023-42/+42
|\ | | | | Improvements to log messages
| * Fix spelling errorTim Smith2015-10-181-1/+1
| |
| * Improve sentencesTim Smith2015-10-183-3/+3
| |
| * Unnecessary capitalizationTim Smith2015-10-182-3/+3
| |
| * Use why-run vs. why_run or whyrunTim Smith2015-10-184-4/+4
| |
| * Capitalize sentencesTim Smith2015-10-1813-31/+31
| |
* | Merge pull request #4066 from pwelch/2372-fix-chef-apply-usage-bannerLamont Granquist2015-10-201-1/+1
|\ \ | | | | | | Fix chef-apply usage banner
| * | Fix chef-apply usage bannerpwelch2015-10-171-1/+1
| |/ | | | | | | | | | | | | | | | | The chef-apply option flags should trail the recipe or recipe text that is being applied. This updates the chef-apply banner to show the correct usage. Fixes #2372
* | Merge pull request #4061 from chef/ksubrama/win32-processKartik Null Cating-Subramanian2015-10-191-1/+1
|\ \ | |/ |/| Bump win32-process pin
| * Bump win32-process pinksubrama/win32-processKartik Null Cating-Subramanian2015-10-151-1/+1
|/ | | Pulls in fixes for https://github.com/djberg96/win32-process/issues/19
* add ChangeLogLamont Granquist2015-10-131-0/+6
|
* Merge pull request #4034 from chef/lcg/ruby-profilingLamont Granquist2015-10-136-2/+66
|\ | | | | add optional ruby-profiling with --profile-ruby
| * fix PR feedbacklcg/ruby-profilingLamont Granquist2015-10-133-7/+5
| |
| * lazy load ruby-profLamont Granquist2015-10-061-6/+3
| |
| * make description of option scarierLamont Granquist2015-10-061-1/+1
| |
| * add optional ruby-profiling with --profile-rubyLamont Granquist2015-10-056-2/+71
| | | | | | | | dumps a large call graph into /var/chef/cache/graph_profile.out
* | Merge pull request #4049 from chef/ksubrama/gemspecjk/notification_blocksKartik Null Cating-Subramanian2015-10-093-3/+3
|\ \ | | | | | | Add gemspec files to allow bundler to run from the gem
| * | Have Gemspec not always expect chef-config to exist beside it.Kartik Null Cating-Subramanian2015-10-091-1/+1
| | |
| * | Change chef-config's gemspec to include itselfksubrama/gemspecKartik Null Cating-Subramanian2015-10-091-1/+1
| | |
| * | Add gemspec files to allow bundler to run from the gemKartik Null Cating-Subramanian2015-10-091-1/+1
|/ /
* | Merge pull request #4029 from chef/ssd/search-pagination-fixSteven Danna2015-10-092-3/+35
|\ \ | | | | | | Fix search result pagination
| * | Fix search result paginationssd/search-pagination-fixSteven Danna2015-10-092-3/+35
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The start and rows parameter that are passed as part of the search request are passed directly to Solr on the backend. Results from Solr may contain deleted nodes no longer in the erchef database. Erchef will filter such nodes from the results. Thus, a user may receive fewer rows than they asked for. Incrementing 'start' only by the number of rows received will then result in the next Solr response overlapping the first, which can lead to duplicate results. In the case of a Solr results page that was completely filtered, it would lead to an infinite loop. This commit changes the code to always increment by the requested page size (args[:rows]) when it is non-nil. Incrementing by the length of the response set is still wrong in the case when the args[:rows] is nil, but the server doesn't give us anything else to increment by. Fixes #4027
* | Accept coercion as a way to accept nil valuesJohn Keiser2015-10-082-1/+12
| |
* | Merge pull request #4046 from chef/mwrock/no_win_groupMatt Wrock2015-10-083-5/+15
|\ \ | | | | | | ignore gid in the user resource on windows
| * | fixing typoMatt Wrock2015-10-081-1/+1
| | |
| * | fix unit testsMatt Wrock2015-10-081-2/+2
| | |
| * | fix spacingmwrock/no_win_groupMatt Wrock2015-10-081-1/+1
| | |
| * | ignore gid on windows and warn to use groupMatt Wrock2015-10-082-4/+14
|/ /
* | Bump revision to 12.5.112.5.1stable12.5-stableJohn Keiser2015-10-074-4/+4
| |
* | Merge pull request #3936 from chef/adamedx/windows-color-defaultsAdam Edwards2015-10-065-9/+9
|\ \ | | | | | | Windows cli tools should have color true by default
| * | Windows cli tools should have color true by defaultadamedx/windows-color-defaultsAdam Edwards2015-10-065-9/+9
|/ /
* | Merge pull request #4036 from chef/mcquin/chef-3883Claire McQuin2015-10-063-10/+46
|\ \ | | | | | | Quote paths.
| * | Quote paths.mcquin/chef-3883Claire McQuin2015-10-063-10/+46
| | |
* | | Merge pull request #3999 from tas50/unshare_warningThom May2015-10-061-2/+2
|\ \ \ | | | | | | | | Better warning for unsharing
| * | | Better warning for unsharingTim Smith2015-09-291-2/+2
| | | |
* | | | Merge pull request #3998 from tas50/chefThom May2015-10-061-18/+18
|\ \ \ \ | | | | | | | | | | Update URLs to chef.io
| * | | | Update URLs to chef.ioTim Smith2015-09-291-18/+18
| |/ / /
* | | | Merge pull request #4023 from higanworks/part_of_3959Thom May2015-10-061-0/+2
|\ \ \ \ | |_|/ / |/| | | pass ssh_password to session
| * | | pass ssh_password to sessionsawanoboly2015-10-051-0/+2
| | |/ | |/|
* | | Fix dispatch when there are different receiversJohn Keiser2015-10-052-4/+50
| | | | | | | | | | | | | | | with different numbers of arguments. Fixes https://github.com/chef/chef-dk/issues/546)
* | | Merge pull request #4032 from chef/mcquin/nano/disable-32-bitClaire McQuin2015-10-055-21/+49
|\ \ \ | | | | | | | | Raise error when running 32-bit scripts on Windows Nano.
| * | | Raise error when running 32-bit scripts on Windows Nano.mcquin/nano/disable-32-bitClaire McQuin2015-10-055-21/+49
| |/ /
* | | Merge pull request #4000 from chef/ad/3992-redhat-serviceThom May2015-10-051-2/+4
|\ \ \ | | | | | | | | Fix for #3992: Add check for custom command in redhat service provider
| * | | REALLY adding explicit error msg if init.d script or custom command is not ↵ad/3992-redhat-serviceandy-dufour2015-09-291-1/+1
| | | | | | | | | | | | | | | | found.
| * | | Adding check for custom command in redhat service provider and providing ↵andy-dufour2015-09-291-1/+3
| | |/ | |/| | | | | | | more explicit error message if init.d script or custom command is not found.
* | | Merge pull request #4003 from chef/tm/duplicate_recipesThom May2015-10-054-2/+23
|\ \ \ | | | | | | | | Ensure that our list of recipes is backwards compat
| * | | Ensure that our list of recipes is backwards compattm/duplicate_recipesThom May2015-09-294-2/+23
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | Prior to chef 12.2 we included unexpanded 'cookbook' names for default recipes. In 12.2, we moved to expanded ('cookbook::default') names, which broke some searches. However, some of our users have now moved to searching for expanded, so we need to cater for both. Fixes #3767
* | | Fix forward module.to_sjk/forwarder-to_sJohn Keiser2015-10-052-1/+6
| |/ |/|
* | Merge pull request #4016 from chef/mcquin/nano-ps-scriptClaire McQuin2015-10-026-59/+145
|\ \ | | | | | | Use -Command flag on Nano
| * | Mark tests assuming 32-bit architecture as not support on nanomcquin/nano-ps-scriptClaire McQuin2015-10-011-18/+6
| | |