summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Testing cachingshain/config_testScott Hain2018-01-192-11/+12
| | | | Signed-off-by: Scott Hain <shain@chef.io>
* Bump version to 13.7.16 by Expeditorv13.7.16Chef Expeditor2018-01-195-12/+13
|
* Merge pull request #6751 from chef/tm/13_7_releaseThom May2018-01-192-2/+54
|\ | | | | Update release notes for 13.7
| * Add additional deprecations, a few bugs, and some security updatestm/13_7_releaseTim Smith2018-01-181-15/+45
| | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * Update release notes for 13.7Thom May2018-01-182-2/+24
| | | | | | | | Signed-off-by: Thom May <thom@chef.io>
* | Bump version to 13.7.15 by Expeditorv13.7.15Chef Expeditor2018-01-195-11/+12
| |
* | Merge pull request #6754 from chef/revert_inlineThom May2018-01-192-8/+3
|\ \ | | | | | | Revert deprecation of use_inline_resources
| * | Update the pending version to 14.1revert_inlineTim Smith2018-01-181-1/+1
| | | | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Revert "Enable the deprecation for use_inline_resource"Tim Smith2018-01-181-8/+2
| | | | | | | | | | | | This reverts commit aab192e2b5df57d13213f8e89ce6fccc74a01db1.
| * | Revert "Enable the spec use_inline_resoruces deprecation"Tim Smith2018-01-181-0/+1
| | | | | | | | | | | | This reverts commit dfc85c82105d2c7a5b03cf8cf60ba9e0a8fe51f9.
* | | Bump version to 13.7.14 by Expeditorv13.7.14Chef Expeditor2018-01-195-11/+12
| | |
* | | Merge pull request #6752 from chef/lcg/fix-double-loggingThom May2018-01-191-2/+2
|\ \ \ | |/ / |/| | fix double-logging bug
| * | fix double-logging buglcg/fix-double-loggingLamont Granquist2018-01-181-2/+2
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | somehow we're getting an IO object here which is a STDOUT wired up to file descriptor 10 which is not the same as "STDOUT" which is wired up to file descriptor 1. i can't track down where or how this is happening. this works around the problem by just inspecting if the log_location is set to an IO object which is a tty or not which should be broadly equivalent (and perhaps more correct than the old code? not sure if the edge cases matter or not). also i'm not smart enough right now to figure out how to test this adequately, particularly in ways that would actually catch if it really breaks in the future (particularly due to the gnarliness of wanting to have a functional test which constructs a tty when run on travis without a tty....) Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Merge pull request #6715 from chef/travis_25Tim Smith2018-01-183-6/+26
|\ \ | |/ |/| Add Ruby 2.5 testing to Travis
| * spec fixes for ruby 2.5Lamont Granquist2018-01-182-6/+6
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * Add Ruby 2.5 testing to TravisTim Smith2018-01-181-0/+20
|/ | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 13.7.13 by Expeditorv13.7.13Chef Expeditor2018-01-185-11/+12
|
* Merge pull request #6725 from chef/osc_11Thom May2018-01-185-0/+10
|\ | | | | Add a warning that Chef 11 server support in knife user is deprecated
| * Add a warning that Chef 11 server support in knife user is deprecatedosc_11Tim Smith2018-01-035-0/+10
| | | | | | | | | | | | We're currently shipping 2 of each of these plugins and rewriting the user input when we think they actually meant to support Chef 11 server. It's code that really needs to go away at this point. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Merge pull request #6744 from chef/dnf_yum_repoThom May2018-01-181-9/+24
|\ \ | | | | | | Fix yum_repository to properly reload chef's package cache post repo setup
| * | Add the same logic to other actionsdnf_yum_repoTim Smith2018-01-151-2/+12
| | | | | | | | | | | | | | | | | | Missed that entirely Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Fix yum_repository to properly reload chef's package cache post repo setupTim Smith2018-01-151-7/+12
| | | | | | | | | | | | | | | | | | Without this you cannot install a package that is in that repository. We already did this for the yum cache, but not for the DNF cache. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Merge pull request #6714 from MsysTechnologiesllc/dh/update_validation_on_idleThom May2018-01-182-2/+16
|\ \ \ | | | | | | | | [MSYS-735]fix validation for idle_time
| * | | fixed functional testdheerajd-msys2018-01-161-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
| * | | Fix style errordheerajd-msys2018-01-162-2/+1
| | | | | | | | | | | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
| * | | Fix rspecsdheerajd-msys2018-01-162-1/+6
| | | | | | | | | | | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
| * | | fix validation for idle_timedheerajd-msys2018-01-162-2/+12
| |/ / | | | | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
* | | Merge pull request #6750 from chef/tduffield/docker-rhel6Thom May2018-01-181-1/+1
|\ \ \ | | | | | | | | Update Dockerfile to use RHEL6 build
| * | | Update Dockerfile to use RHEL6 buildtduffield/docker-rhel6Tom Duffield2018-01-181-1/+1
|/ / / | | | | | | | | | | | | | | | | | | RHEL5 has been EOL and builds are no longer being produced. Move the Dockerfile to use RHEL6. Signed-off-by: Tom Duffield <tom@chef.io>
* | | Bump version to 13.7.12 by Expeditorv13.7.12Chef Expeditor2018-01-175-11/+12
| | |
* | | Merge pull request #6745 from chef/lcg/fix-non-daemonized-umaskLamont Granquist2018-01-171-0/+1
|\ \ \ | | | | | | | | fix non-daemonized umask
| * | | fix non-daemonized umasklcg/fix-non-daemonized-umaskLamont Granquist2018-01-161-0/+1
| |/ / | | | | | | | | | | | | | | | We are ignoring this setting in non-daemonized (--no-fork) runs. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Merge pull request #6748 from chef/lcg/hardocde-tmpdir-aix-specLamont Granquist2018-01-172-7/+9
|\ \ \ | | | | | | | | use TMPDIR correctly in initscript
| * | | missed oneLamont Granquist2018-01-171-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | | fix bff tests for tmpdirLamont Granquist2018-01-171-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | | use TMPDIR correctly in initscriptlcg/hardocde-tmpdir-aix-specLamont Granquist2018-01-171-4/+6
|/ / / | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Bump version to 13.7.11 by Expeditorv13.7.11Chef Expeditor2018-01-175-11/+12
| | |
* | | Merge pull request #6637 from chef/lcg/cleanup-node-mapLamont Granquist2018-01-171-32/+33
|\ \ \ | | | | | | | | simplify node_map logic
| * | | fix priority array orderlcg/cleanup-node-mapLamont Granquist2017-12-081-2/+4
| | | | | | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | | simplify node_map logicLamont Granquist2017-12-081-32/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | flattens out the internal data structure and removes some excessive defensive coding. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | | Merge pull request #6746 from chef/shain/force_delete_tmpdirThom May2018-01-171-1/+1
|\ \ \ \ | |_|/ / |/| | | Force deletion of tmpdir with sudo
| * | | Force deletion of tmpdir with sudoshain/force_delete_tmpdirScott Hain2018-01-161-1/+1
|/ / / | | | | | | | | | | | | | | | This makes sure we don't fail on the very slim chance that an OS generated file (lookin' at you, AIX) ends up in this directory and blocks deletion. Signed-off-by: Scott Hain <shain@chef.io>
* | | Bump version to 13.7.10 by Expeditorv13.7.10Chef Expeditor2018-01-155-14/+15
| | |
* | | Merge pull request #6738 from cramaechi/CHEF-5055Tim Smith2018-01-151-2/+6
|\ \ \ | | | | | | | | Fix knife status to show seconds when needed #5055
| * | | Fix IndentationChibuikem Amaechi2018-01-111-4/+4
| | | | | | | | | | | | | | | | Signed-off-by: Chibuikem Amaechi <cramaechi@me.com>
| * | | Fix knife status to show seconds when needed #5055Chibuikem Amaechi2018-01-101-2/+6
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a node.save operation is executed and a "knife status" is immediately executed I get "xx minutes" instead of "xx seconds". The code behind 'knife status' isn't designed to have the ability to format the time difference in seconds. To remediate issue, make sure there is a condition in place to format the time difference in seconds when appropriate. Signed-off-by: Chibuikem Amaechi <cramaechi@me.com>
* | | Merge pull request #6730 from chef/acceptanceLamont Granquist2018-01-081-2/+2
|\ \ \ | | | | | | | | Update the acceptance chef-config pin for chef 14
| * | | Update the acceptance chef-config pin for chef 14acceptanceTim Smith2018-01-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | There's no reason to exclude chef 13 at this point. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | | Bump version to 13.7.9 by Expeditorv13.7.9Chef Expeditor2018-01-085-11/+12
| | | |
* | | | Merge pull request #6732 from chef/deprecationsLamont Granquist2018-01-082-3/+8
|\ \ \ \ | | | | | | | | | | Enable the deprecation for use_inline_resource