summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 12.21.14 by Chef Expeditorv12.21.14Chef Expeditor2017-09-271-1/+1
|
* Bump version to 12.21.13 by Chef Expeditorv12.21.13Chef Expeditor2017-09-221-1/+1
|
* apt-key finger no longer matches extract fingerprints regexMatt Whiteley2017-09-211-4/+7
| | | | Signed-off-by: Matt Whiteley <mattwhiteley@gmail.com>
* Bump version to 12.21.12 by Chef Expeditorv12.21.12Chef Expeditor2017-09-141-1/+1
|
* Bump version to 12.21.11 by Chef Expeditorv12.21.11Chef Expeditor2017-09-141-1/+1
|
* Code refactor and add spec for powershell version 5piyushawasthi2017-09-121-1/+0
| | | | Signed-off-by: piyushawasthi <piyush.awasthi@msystechnologies.com>
* Refactor all command line options into lcm_command()Bryan McLellan2017-09-121-12/+13
| | | | Signed-off-by: Bryan McLellan <btm@loftninjas.org>
* MSYS-656 - fixed dsc_script for WMF5piyushawasthi2017-09-121-5/+15
| | | | Signed-off-by: piyushawasthi <piyush.awasthi@msystechnologies.com>
* Bump version to 12.21.10 by Chef Expeditorv12.21.10Chef Expeditor2017-09-051-1/+1
|
* Merge pull request #6367 from chef/lcg/backport-6362Lamont Granquist2017-09-053-25/+100
|\ | | | | backport of 6362
| * immutablize on the fly and reduce dupinglcg/backport-6362Lamont Granquist2017-09-013-25/+100
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version to 12.21.9 by Chef Expeditorv12.21.9Chef Expeditor2017-09-041-1/+1
| |
* | Merge pull request #6377 from jaymzh/dnf-12Thom May2017-09-041-1/+3
|\ \ | |/ |/| Backport #6351 to Chef-12
| * Backport #6351 to Chef-12Phil Dibowitz2017-09-011-1/+3
| | | | | | | | Signed-off-by: Phil Dibowitz <phil@ipom.com>
* | Bump version to 12.21.8 by Chef Expeditorv12.21.8Chef Expeditor2017-09-011-1/+1
|/
* Bump version to 12.21.7 by Chef Expeditorv12.21.7Chef Expeditor2017-08-291-1/+1
|
* Bump version to 12.21.6 by Chef Expeditorv12.21.6Chef Expeditor2017-08-291-1/+1
|
* Merge pull request #6358 from chef/lcg/backport-6356Lamont Granquist2017-08-281-4/+0
|\ | | | | Chef-12: backport 6356
| * node attributes: remove useless dup in merge_alllcg/backport-6356Lamont Granquist2017-08-281-4/+0
| | | | | | | | | | | | | | | | | | since immutablize now does dup + freeze of everything this is definitively unnecessary, and appears to have been unnecessary even in Chef-12 (at last does not break any specs there either). Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version to 12.21.5 by Chef Expeditorv12.21.5Chef Expeditor2017-08-291-1/+1
| |
* | speed up immutabilizationLamont Granquist2017-08-281-1/+1
|/ | | | | | since we only inject Mash/VividMashes do not convert Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version to 12.21.4 by Chef Expeditorv12.21.4Chef Expeditor2017-08-141-1/+1
|
* made changes to work file and remote_file resource work for lazyNAshwini2017-08-081-4/+32
| | | | Signed-off-by: NAshwini <ashwini.nehate@msystechnologies.com>
* release 12.21.3v12.21.312.21.3Bryan McLellan2017-06-231-1/+1
| | | | Signed-off-by: Bryan McLellan <btm@chef.io>
* Properly send run_list_expanded event in policy node caseTyler Cloke2017-06-231-1/+27
| | | | Signed-off-by: Tyler Cloke <tylercloke@gmail.com>
* Bump version of chef to 12.21.2v12.21.2Thom May2017-06-211-1/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* release 12.21.1v12.21.1Thom May2017-06-201-1/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* Release 12.21.0tm/12_21Thom May2017-06-202-2/+2
| | | | Signed-off-by: Thom May <thom@chef.io>
* Special case for the supports pseudo-property for Chef 12.Noah Kantrowitz2017-06-161-0/+4
| | | | Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
* Chefstyle fixes.Noah Kantrowitz2017-05-241-4/+3
| | | | Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
* Expand the system info displayed on error to give us some more data to work ↵Noah Kantrowitz2017-05-241-1/+19
| | | | | | with when helping users. Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
* Prefer Systemd with sysvinit script over Upstart for service providerGrant Ridder2017-05-151-1/+1
| | | | | | On newer Debian based systems that use systemd to have a package install a SysV init and Upstart script. Systemd can use systemd service files or SysV init scripts. However, on the Chef serivce provider side, this is not reflected. So in this case, Upstart will be prefered even if Upstart itself is not installed on the system. Signed-off-by: Grant Ridder <shortdudey123@gmail.com>
* Discard caches for files not in the manifestAkira Kitada2017-05-101-1/+1
| | | | | | | | | | | | | cookbook_segment returns nil if the cache is not found in the manifest. This can happen when chef client 12 runs on a node where chef client 13 generated cookbook cache files. Currently, chef client fails in this case. This patch fixes it. It should be safe to remove those cache files because they are not cached in Chef 12, after all. Signed-off-by: Akira Kitada <akitada@gmail.com>
* bump to version 12.20.3sd/version-12.20.3sdelano2017-04-301-1/+1
| | | | Signed-off-by: Stephen Delano <stephen@chef.io>
* Clarify log messaging for required recipe featurerequired-recipe-backportdanielsdeleo2017-04-101-1/+2
| | | | | | | The previous log message didn't have enough context and could sound "scary" to users unfamiliar with the feature. Signed-off-by: Daniel DeLeo <dan@chef.io>
* Merge pull request #6032 from chef/sd/required-recipeThom May2017-04-101-0/+44
| | | | | | server enforced required recipe Signed-off-by: Daniel DeLeo <dan@chef.io>
* Use shellsplit for apt_package optionsMark Harrison2017-04-101-4/+2
| | | | | | | | This correctly deals with quotes and so on in package options. Fixes #5836 Signed-off-by: Mark Harrison <mark@mivok.net>
* Fix apt_repository for latest os version 16.10Salim Afiune2017-03-081-3/+5
| | | | | | | | | | | | | | | | Great description and solution of the problem made by @jeremiahsnapp in the below issue! Closes https://github.com/chef/chef/issues/5831 I have validated this works fine for the following os: * Ubuntu 14.04 * Ubuntu 16.04 * Ubuntu 16.10 (latest) * Debian-6.0.10 * Debian-8.7 (latest) Signed-off-by: Salim Afiune <afiune@chef.io>
* Bump version to 12.20.2 (manually)Tom Duffield2017-03-071-1/+1
| | | | Signed-off-by: Tom Duffield <tom@chef.io>
* Verify data bag exists before trying to create itSalim Afiune2017-03-071-4/+6
| | | | | | | | | | | | | | | | | [ZD-12613] There are users who want to customize permissions to prevent a group of users from creating new data bags but want to allow the group of users to create data bag items within an existing data bag. If the user doesn't have permission to create data bags then the current API request sequence will prevent the user from creating a data bag item even if the data bag already exists. This commit fixes the above problem by verifying (not trying to create) if the data bag exist through a GET request, if it doesn't the it tries to generate it, then it proceeds to create the data bag item. Signed-off-by: Salim Afiune <afiune@chef.io>
* Bump version of chef to 12.19.35 by Chef Versioner.v12.19.35Chef Versioner2017-02-221-1/+1
|
* Bump version of chef to 12.19.34 by Chef Versioner.v12.19.34Chef Versioner2017-02-171-1/+1
|
* Bump version of chef to 12.19.33 by Chef Versioner.v12.19.33Chef Versioner2017-02-161-1/+1
|
* Bump version of chef to 12.19.32 by Chef Versioner.v12.19.32Chef Versioner2017-02-161-1/+1
|
* Merge pull request #5818 from chef/lcg/remove-ivarsLamont Granquist2017-02-1631-640/+640
|\ | | | | cleans up the remaining new/current_resource ivars in remaining provider code
| * cleans up the remaining new/current_resource ivarslcg/remove-ivarsLamont Granquist2017-02-1531-640/+640
| | | | | | | | | | | | switches from using ivars to accessors for getters Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 12.19.31 by Chef Versioner.v12.19.31Chef Versioner2017-02-151-1/+1
|/
* Bump version of chef to 12.19.30 by Chef Versioner.v12.19.30Chef Versioner2017-02-141-1/+1
|
* Merge pull request #5816 from chef/lcg/yum-coerce-array-attributesLamont Granquist2017-02-142-4/+13
|\ | | | | coerce immutable arrays to normal arrays in the yum_package resource
| * coerce immutable arrays to normal arrayslcg/yum-coerce-array-attributesLamont Granquist2017-02-142-4/+13
| | | | | | | | | | | | | | as noted in comments this works around bugginess in the yum provider that require a major refactor to fix. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>