summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version of chef to 12.18.30 by Chef Versioner.v12.18.30Chef Versioner2017-01-115-10/+14
|
* Merge pull request #5717 from chef/lcg/attr-derpLamont Granquist2017-01-112-7/+27
|\ | | | | Core: fix node attribute "unless" API methods
| * fix comment [ci skip]Lamont Granquist2017-01-111-1/+1
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix node attribute "unless" API methodsLamont Granquist2017-01-112-8/+28
| | | | | | | | | | | | | | | | | | | | closes #5556 corrects behavior to 12.11.x behavior which was lost in the refactor may address #5715 Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 12.18.29 by Chef Versioner.v12.18.29Chef Versioner2017-01-115-10/+10
| |
* | Merge pull request #5716 from chef/lcg/ruby-2.4Lamont Granquist2017-01-111-20/+20
|\ \ | |/ |/| ruby-2.4 got released
| * just comment out fedora-latestLamont Granquist2017-01-111-23/+18
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * ignore fedora-latestLamont Granquist2017-01-111-0/+5
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * ruby-2.4 got releasedlcg/ruby-2.4Lamont Granquist2017-01-111-2/+2
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 12.18.28 by Chef Versioner.v12.18.28Chef Versioner2017-01-115-10/+10
| |
* | Merge pull request #4894 from chef/lcg/dnf-providerLamont Granquist2017-01-1127-28/+1423
|\ \ | |/ |/| DNF Provider PR #2
| * remove FIXMEs around cache flushinglcg/dnf-providerLamont Granquist2016-12-192-24/+7
| | | | | | | | | | | | not going to actually fix this, not worth it. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add some idempotency checksLamont Granquist2016-12-161-1/+21
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add a commentLamont Granquist2016-12-151-0/+1
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix mysql-should-install-mariadb bugLamont Granquist2016-12-151-1/+2
| | | | | | | | | | | | | | picks the correct highest version off of a list if we have more than one pkg in the list at this point. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add some debug loggingLamont Granquist2016-12-151-1/+4
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix FIXME in define_resource_requirementsLamont Granquist2016-12-152-4/+22
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add a comment about the Tao of python-vs-rubyLamont Granquist2016-12-151-0/+9
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * also extract out the utility classLamont Granquist2016-12-153-31/+58
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * review feedback plus break out helper classLamont Granquist2016-12-156-104/+138
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix chefstyleLamont Granquist2016-12-141-1/+1
| | | | | | | | | | | | dunno why it suddenly got annoyed at me Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * refactor to use array indexes instead of package_namesLamont Granquist2016-12-143-35/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes arch array support. pretty sure that my "helpfully" compacting out nils from the names and versions passed to install_package / remove_package was a design flaw now. all of the helpers i've created to translate from package_name to various arrays also assumes the package_name is a unique identifier which is what was going wrong here, and is wrong. best to just have all the arrays indexed the same. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add allow_nils API to multipackageLamont Granquist2016-12-141-5/+14
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add some arch testing, fix a local install testLamont Granquist2016-12-131-1/+81
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * get versions working as well as possibleLamont Granquist2016-12-133-1/+22
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * DRY code a bitLamont Granquist2016-12-131-21/+5
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add srpms to repoLamont Granquist2016-12-132-0/+0
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add failing specs for versionLamont Granquist2016-12-131-0/+36
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * test the property works as wellLamont Granquist2016-12-131-0/+18
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * arches were legit busted, fixing add a couple testsLamont Granquist2016-12-132-3/+31
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * few more tests for when there's no candidate versionsLamont Granquist2016-12-131-0/+29
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * roll back :install doing upgrades or downgrades, it shouldn'tLamont Granquist2016-12-132-18/+59
| | | | | | | | | | | | | | | | dunno what i was thinking. add some more testing as well. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix and test :install and :upgrade source arg idempotencyLamont Granquist2016-12-132-3/+25
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix deprecation warning spec failureLamont Granquist2016-12-131-1/+1
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix downgrades with local source using :installLamont Granquist2016-12-132-2/+4
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add more tests and work around superclass firing off deprecationsLamont Granquist2016-12-132-1/+43
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * support source property and local installsLamont Granquist2016-12-132-280/+329
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * ignore kill failuresLamont Granquist2016-12-131-1/+1
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix deprecation warning testsLamont Granquist2016-12-131-0/+4
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add tests and deprecation for allow_downgradeLamont Granquist2016-12-133-3/+48
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * flushcache property codeLamont Granquist2016-12-131-2/+20
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add dnf resource unit specLamont Granquist2016-12-131-0/+100
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add flush_cache and fix yum'sLamont Granquist2016-12-133-14/+57
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * remove old testing scriptLamont Granquist2016-12-131-22/+0
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * squashing dnf workLamont Granquist2016-12-1321-10/+757
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 12.18.27 by Chef Versioner.v12.18.27Chef Versioner2017-01-095-10/+10
| |
* | Merge pull request #5713 from chef/lcg/fix-master2Lamont Granquist2017-01-091-3/+0
|\ \ | | | | | | kitchen-tests: remove deprecated openssh options
| * | remove deprecated optionsLamont Granquist2017-01-091-3/+0
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Bump version of chef to 12.18.26 by Chef Versioner.v12.18.26Chef Versioner2017-01-095-10/+10
| | |
* | | Merge pull request #5703 from ↵Bryan McLellan2017-01-091-0/+1
|\ \ \ | | | | | | | | | | | | | | | | MsysTechnologiesllc/nim/chocolatey_returns_property_notes Release notes for returns property in chocolatey_package