summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 18.2.26 by Chef ExpeditorHEADv18.2.26mainChef Expeditor2023-05-169-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Add efivarfs to list of non-existent mount devices (#13683)Animesh Sahu2023-05-162-2/+3
| | | Signed-off-by: Animeshz <animeshsahu19@yahoo.com>
* Bump version to 18.2.25 by Chef Expeditorv18.2.25Chef Expeditor2023-05-109-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Fix case statement ordering in convert_value (#13733)David T. Crosby2023-05-101-2/+5
| | | Signed-off-by: David Crosby <dcrosby@fb.com>
* Bump version to 18.2.24 by Chef Expeditorv18.2.24Chef Expeditor2023-05-099-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* File exists? -> exist? (#13744)Thomas Powell2023-05-091-1/+1
| | | Signed-off-by: Thomas Powell <thomas.powell@progress.com>
* Bump version to 18.2.23 by Chef Expeditorv18.2.23Chef Expeditor2023-05-049-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Stub test cert body to fix tests (#13740)Thomas Powell2023-05-041-0/+25
| | | Signed-off-by: Thomas Powell <thomas.powell@progress.com>
* Bump version to 18.2.22 by Chef Expeditorv18.2.22Chef Expeditor2023-05-049-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump omnibus-software from `8e242c1` to `f06bbea` in /omnibus (#13731)dependabot[bot]2023-05-041-9/+6
| | | | | | | | | | | | | | Bumps [omnibus-software](https://github.com/chef/omnibus-software) from `8e242c1` to `f06bbea`. - [Release notes](https://github.com/chef/omnibus-software/releases) - [Commits](https://github.com/chef/omnibus-software/compare/8e242c1b616744701471495db261d3774b11cbdf...f06bbea744458f2cb63c98e6891f9cfb904a1f90) --- updated-dependencies: - dependency-name: omnibus-software dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Bump version to 18.2.21 by Chef Expeditorv18.2.21Chef Expeditor2023-05-049-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Remove EOLed debian-9 from kitchen tests (#13736)Thomas Powell2023-05-041-1/+0
| | | Signed-off-by: Thomas Powell <thomas.powell@progress.com>
* Bump version to 18.2.20 by Chef Expeditorv18.2.20Chef Expeditor2023-05-039-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* feat(apt_repository): Allow specifying arbitrary options (#13728)Thayne McCombs2023-05-034-13/+48
| | | | | | | | | This allows specifying additional options to apt repositories, in addition to `trusted` and `arch`. By using an array of strings we also allow using multivalue operators like -= and += Fixes: #13727 Signed-off-by: Thayne McCombs <thayne@lucid.co>
* Bump version to 18.2.19 by Chef Expeditorv18.2.19Chef Expeditor2023-05-039-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Automate manual certificate setup step used in kitchen tests (#13714)neha-p62023-05-032-23/+15
| | | Signed-off-by: Neha Pansare <neha.pansare@progress.com>
* Bump version to 18.2.18 by Chef Expeditorv18.2.18Chef Expeditor2023-05-029-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Fix output of cookbook list/show (#13654)Milan Šťastný2023-05-026-24/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR turns the output from the following: ```json $ knife cookbook list -a -F json [ "7-zip 1.0.2", "api_docs 0.1.0", "apt 1.1.1", "ark 4.0.0 3.1.1 0.9.0 0.3.0", "audit-cis 0.4.0", "authenticator 0.1.5 0.1.4", "aws-static-ip-ha 0.1.0", "aws-tools 0.0.5" ] ``` to this ```json $ knife cookbook list -a -F json { "7-zip": [ "1.0.2" ], "api_docs": [ "0.1.0" ], "apt": [ "1.1.1" ], "ark": [ "4.0.0", "3.1.1", "0.9.0", "0.3.0" ], "audit-cis": [ "0.4.0" ], "authenticator": [ "0.1.5", "0.1.4" ], "aws-static-ip-ha": [ "0.1.0" ], "aws-tools": [ "0.0.5" ] } ``` This has a potential of breaking peoples script if they adjusted to the broken format, that is why this is marked as a breaking change. This brings the output of the following in line with other listings coming out of chef ### Examples of the affected outputs: #### knife cookbook show summary(default) ``` $ knife cookbook show ark ark: 4.0.0 3.1.1 0.9.0 0.3.0 ``` text ``` $ knife cookbook show ark -F text ark: 4.0.0 3.1.1 0.9.0 0.3.0 ``` json ```json $ knife cookbook show ark -F json { "ark": [ "4.0.0", "3.1.1", "0.9.0", "0.3.0" ] } ``` yaml ```yaml $ knife cookbook show ark -F yaml --- ark: - 4.0.0 - 3.1.1 - 0.9.0 - 0.3.0 ``` pp ``` $ knife cookbook show ark -F pp {"ark"=>["4.0.0", "3.1.1", "0.9.0", "0.3.0"]} ``` #### knife cookbook list summary(default) ``` $ knife cookbook list -a 7-zip: 1.0.2 api_docs: 0.1.0 apt: 1.1.1 ark: 4.0.0 3.1.1 0.9.0 0.3.0 audit-cis: 0.4.0 auditbeat: 0.0.42 authenticator: 0.1.5 0.1.4 aws-static-ip-ha: 0.1.0 aws-tools: 0.0.5 ``` text ``` $ knife cookbook list -a -F text 7-zip: 1.0.2 api_docs: 0.1.0 apt: 1.1.1 ark: 4.0.0 3.1.1 0.9.0 0.3.0 audit-cis: 0.4.0 auditbeat: 0.0.42 authenticator: 0.1.5 0.1.4 aws-static-ip-ha: 0.1.0 aws-tools: 0.0.5 ``` json ```json $ knife cookbook list -a -F json { "7-zip": [ "1.0.2" ], "api_docs": [ "0.1.0" ], "apt": [ "1.1.1" ], "ark": [ "4.0.0", "3.1.1", "0.9.0", "0.3.0" ], "audit-cis": [ "0.4.0" ], "authenticator": [ "0.1.5", "0.1.4" ], "aws-static-ip-ha": [ "0.1.0" ], "aws-tools": [ "0.0.5" ], } ``` yaml ```yaml $ knife cookbook list -a -F yaml --- 7-zip: - 1.0.2 api_docs: - 0.1.0 apt: - 1.1.1 ark: - 4.0.0 - 3.1.1 - 0.9.0 - 0.3.0 audit-cis: - 0.4.0 authenticator: - 0.1.5 - 0.1.4 aws-static-ip-ha: - 0.1.0 aws-tools: - 0.0.5 ``` pp ``` $ knife cookbook list -a -F pp {"7-zip"=>["1.0.2"], "api_docs"=>["0.1.0"], "apt"=>["1.1.1"], "ark"=>["4.0.0", "3.1.1", "0.9.0", "0.3.0"], "audit-cis"=>["0.4.0"], "authenticator"=>["0.1.5", "0.1.4"], "aws-static-ip-ha"=>["0.1.0"], "aws-tools"=>["0.0.5"], } ``` Closes #13653 Signed-off-by: Milan Stastny <mistastn@cisco.com>
* Bump version to 18.2.17 by Chef Expeditorv18.2.17Chef Expeditor2023-04-259-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* [launchd] Force string values for program_arguments property (#13682)Greg Batye2023-04-251-1/+5
| | | Signed-off-by: Greg Batye <gbatye@gmail.com>
* Bump version to 18.2.16 by Chef Expeditorv18.2.16Chef Expeditor2023-04-259-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Add ruby-cleanup to clear the bundler/gems and cache folder (#13676)Poornima2023-04-252-2/+3
| | | | | * Add ruby-cleanup to clear the bundler/gems and cache folder Signed-off-by: poorndm <poorndm@progress.com>
* Bump version to 18.2.15 by Chef Expeditorv18.2.15Chef Expeditor2023-04-209-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Sean simmons progress/18.2 enable aix (#13702)sean-simmons-progress2023-04-204-21/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * enabling aix 71 for testing Signed-off-by: Sean Simmons <ssimmons@progress.com> * enabling debug Signed-off-by: Sean Simmons <ssimmons@progress.com> * revering this setting thats preventing the other piplines from being tested Signed-off-by: Sean Simmons <ssimmons@progress.com> * revering this setting thats preventing the other piplines from being tested Signed-off-by: Sean Simmons <ssimmons@progress.com> * testing aix 73 Signed-off-by: Sean Simmons <ssimmons@progress.com> * modifying filter here Signed-off-by: Sean Simmons <ssimmons@progress.com> * unsetting x Signed-off-by: Sean Simmons <ssimmons@progress.com> * adding aix 7.2 back Signed-off-by: Sean Simmons <ssimmons@progress.com> * adding aix 7.2 back Signed-off-by: Sean Simmons <ssimmons@progress.com> * testing 9.0.17 omnibus Signed-off-by: Sean Simmons <ssimmons@progress.com> * testing 9.0.17 omnibus Signed-off-by: Sean Simmons <ssimmons@progress.com> * same error as .18, reverting back to stay consistent Signed-off-by: Sean Simmons <ssimmons@progress.com> * testing aix as aix 71 is the only tool with the compiler enabled Signed-off-by: Sean Simmons <ssimmons@progress.com> * testing aix as aix 71 is the only tool with the compiler enabled Signed-off-by: Sean Simmons <ssimmons@progress.com> * adding extended timeout for aix Signed-off-by: Sean Simmons <ssimmons@progress.com> * fixing conditional Signed-off-by: Sean Simmons <ssimmons@progress.com> * something didnt like my if condition Signed-off-by: Sean Simmons <ssimmons@progress.com> * fixing unary operator expected also fixed my condtional to only extend aix build timeout Signed-off-by: Sean Simmons <ssimmons@progress.com> * updating omnibus buildkite platform plugin to the latest this has the uninstall script to remove the chef-foundation from aix. Signed-off-by: Sean Simmons <ssimmons@progress.com> * aix 72 timed out with 2 hours, bumping to 3h Signed-off-by: Sean Simmons <ssimmons@progress.com> --------- Signed-off-by: Sean Simmons <ssimmons@progress.com>
* Bump version to 18.2.14 by Chef Expeditorv18.2.14Chef Expeditor2023-04-209-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #13689 from chef/dependabot/bundler/omnibus/main/pedump-0.6.6John McCrae2023-04-191-1/+1
|\ | | | | Bump pedump from 0.6.5 to 0.6.6 in /omnibus
| * Bump pedump from 0.6.5 to 0.6.6 in /omnibusdependabot[bot]2023-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [pedump](https://github.com/zed-0xff/pedump) from 0.6.5 to 0.6.6. - [Release notes](https://github.com/zed-0xff/pedump/releases) - [Commits](https://github.com/zed-0xff/pedump/compare/v0.6.5...v0.6.6) --- updated-dependencies: - dependency-name: pedump dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
* | Bump version to 18.2.13 by Chef Expeditorv18.2.13Chef Expeditor2023-04-199-22/+23
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Add documentation for running a cookbook as hab+effortless package (#13692)neha-p62023-04-191-0/+57
| | | | | | Signed-off-by: Neha Pansare <neha.pansare@progress.com>
* | Bump version to 18.2.12 by Chef Expeditorv18.2.12Chef Expeditor2023-04-189-22/+23
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | zypper_package: Fix idempotency issue (#13691)Lance Albertson2023-04-182-0/+11
|/ | | | | | | | | | | | Installing the apache2-mod_wsgi-python3 package is not idempotent due to the fact that zypper will also return the apache2-mod_wsgi package. The resolve_available_version method, incorrectly assumes this will only return one item, but in this case it returns four items and will pick the first package listed. To work around this, we should verify that the package name listed in the output matches what we are expecting to install. Signed-off-by: Lance Albertson <lance@osuosl.org>
* Bump version to 18.2.11 by Chef Expeditorv18.2.11Chef Expeditor2023-04-149-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Avoid Invalid Memory Object error (#13677)Thomas Powell2023-04-141-1/+7
| | | | | * Use ulong instead of pointer to prevent memory object error. Signed-off-by: Thomas Powell <powell@progress.com>
* Bump version to 18.2.10 by Chef Expeditorv18.2.10Chef Expeditor2023-04-139-22/+23
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #13664 from chef/dependabot/bundler/omnibus/time-0.2.2John McCrae2023-04-131-1/+1
|\ | | | | Bump time from 0.2.1 to 0.2.2 in /omnibus
| * Bump time from 0.2.1 to 0.2.2 in /omnibusdependabot[bot]2023-04-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [time](https://github.com/ruby/time) from 0.2.1 to 0.2.2. - [Release notes](https://github.com/ruby/time/releases) - [Commits](https://github.com/ruby/time/compare/v0.2.1...v0.2.2) --- updated-dependencies: - dependency-name: time dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
* | Bump version to 18.2.9 by Chef Expeditorv18.2.9Chef Expeditor2023-04-069-22/+23
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #13672 from chef/zei/onboarding_to_sonarqubesVinay Satish2023-04-062-0/+26
|\ \ | | | | | | Adding files for onboarding the project to SonarQubes
| * | Adding files for onboarding the project to SonarQubesVinay Satish2023-04-062-0/+26
|/ / | | | | | | Signed-off-by: Vinay Satish <vinay.satish@progress.com>
* | Bump version to 18.2.8 by Chef Expeditorv18.2.8Chef Expeditor2023-04-059-21/+29
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #13663 from chef/jfm/chef18_bug_13446John McCrae2023-04-052-5/+5
|\ \ | | | | | | Correcting a typo in the resource
| * | Correcting a typo in the resource and now the tests as wellJohn2023-03-311-4/+4
| | | | | | | | | | | | Signed-off-by: John <john.mccrae@progress.com>
| * | Correcting a typo in the resourceJohn2023-03-311-1/+1
| | | | | | | | | | | | Signed-off-by: John <john.mccrae@progress.com>
* | | Update CHANGELOG.md to reflect the promotion of 18.2.7Chef Expeditor2023-04-042-55/+52
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Bump version to 18.2.7 by Chef Expeditorv18.2.7Chef Expeditor2023-04-049-22/+23
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | "FFI Yajl" fix (#13662)Thomas Powell2023-04-044-88/+11
| |/ |/| | | | | | | | | * FFI_Yajl fix, remove shadow powershell.rb * Update to 18.0.1 powershell-shim Signed-off-by: Thomas Powell <powell@progress.com>
* | Bump version to 18.2.6 by Chef Expeditorv18.2.6Chef Expeditor2023-04-039-22/+23
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #13668 from chef/jfm/chef18_version_bumpJohn McCrae2023-04-031-10/+10
|\ \ | |/ |/| minor gem update to get the version bumped
| * minor gem update to get the version bumpedJohn2023-04-031-0/+79
| | | | | | | | Signed-off-by: John <john.mccrae@progress.com>
| * minor gem update to get the version bumpedJohn2023-04-031-89/+10
|/ | | | Signed-off-by: John <john.mccrae@progress.com>