Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lcm parser is a lot more forgivingjdmundrawala/parser-v3 | Jay Mundrawala | 2014-09-03 | 2 | -105/+51 |
| | |||||
* | Merge pull request #1958 from opscode/adamedx/dsc-resource-modules | Adam Edwards | 2014-09-02 | 5 | -17/+388 |
|\ | | | | | DSC resource modules that have not been imported can cause failures | ||||
| * | Explicitly require erroraction continue for predictability, consistency in ↵ | Adam Edwards | 2014-09-02 | 1 | -2/+2 |
| | | | | | | | | match conditional | ||||
| * | DSC functional tests with configuration data and parameterization | Adam Edwards | 2014-09-02 | 1 | -4/+225 |
| | | |||||
| * | No erroraction stop since that filters the excepiton | Adam Edwards | 2014-09-01 | 1 | -3/+3 |
| | | |||||
| * | Correctly handle dsc resource import failures | Adam Edwards | 2014-09-01 | 4 | -38/+156 |
| | | |||||
| * | Expose exit_code for cmdlet_result and use to detect DSC resource ↵ | Adam Edwards | 2014-08-30 | 2 | -1/+5 |
| | | | | | | | | installation problems | ||||
| * | Fixup use of status.exitcode to status.status.exitstatus | Adam Edwards | 2014-08-30 | 1 | -1/+1 |
| | | |||||
| * | Handle not installed DSC resource errors from LCM | Adam Edwards | 2014-08-30 | 1 | -3/+10 |
| | | |||||
| * | Set exit code from start-dscconfiguraiton to enable identification of DSC errors | Adam Edwards | 2014-08-30 | 1 | -1/+22 |
|/ | |||||
* | Ohai 7.4.0.rc.0 dependency for PowerShell plugin support | adamedx | 2014-08-29 | 1 | -1/+1 |
| | |||||
* | Better logging for dsc scripts with multiple resources | Jay Mundrawala | 2014-08-29 | 1 | -3/+8 |
| | |||||
* | DSC spec platform detection via WMI | Adam Edwards | 2014-08-29 | 4 | -3/+17 |
| | |||||
* | Deal with LCM failing when a resource does not support WhatIf | Jay Mundrawala | 2014-08-29 | 7 | -37/+79 |
| | |||||
* | Added unit test for powershell cmdlet | Jay Mundrawala | 2014-08-29 | 2 | -2/+108 |
| | |||||
* | DSC: Added test for dsc_script provider | Adam Edwards | 2014-08-29 | 3 | -3/+129 |
| | |||||
* | Added unit tests for configuration_generator | Jay Mundrawala | 2014-08-29 | 2 | -1/+174 |
| | |||||
* | Add configurationdata attribute support | Adam Edwards | 2014-08-29 | 4 | -15/+86 |
| | |||||
* | Parse WhatIf from LCM | Jay Mundrawala | 2014-08-29 | 5 | -25/+383 |
| | |||||
* | Updated powershell functional tests to work with changes to ↵ | Jay Mundrawala | 2014-08-29 | 1 | -17/+15 |
| | | | | Chef::Util::Powershell:Cmdlet | ||||
* | Initial dsc_configuration resource implementation | Adam Edwards | 2014-08-29 | 15 | -0/+951 |
| | |||||
* | Update CHANGELOG for #1627 / #1283 / CHEF-5075 | Bryan McLellan | 2014-08-29 | 1 | -0/+2 |
| | | | | | Fixes #1627. Fixes #1283. | ||||
* | CHEF-5075: order matters for recipe_url | Bryan McLellan | 2014-08-29 | 2 | -11/+33 |
| | | | | | | | Add a test to ensure we maintain the order of fetching the tarball before loading JSON attributes from a file that may be in that recipe tarball Refactor slightly for the benefit of testing | ||||
* | Add comment about order | Stanislav Bogatyrev | 2014-08-29 | 1 | -0/+2 |
| | |||||
* | [CHEF-5075] Fix json_attribs and recipe_url load order. | Stanislav Bogatyrev | 2014-08-29 | 1 | -5/+5 |
| | |||||
* | Update CHANGELOG for #1833 | Bryan McLellan | 2014-08-29 | 1 | -0/+2 |
| | | | | Closes #1833. | ||||
* | combine "no" and "none" freebsd services based on @btm comment | Dave Eddy | 2014-08-29 | 1 | -11/+1 |
| | |||||
* | implement @btm comment about test description strings | Dave Eddy | 2014-08-29 | 1 | -4/+4 |
| | |||||
* | test for none case | Dave Eddy | 2014-08-29 | 1 | -0/+10 |
| | |||||
* | better regex in /etc/rc.conf for service state | Dave Eddy | 2014-08-29 | 1 | -2/+2 |
| | |||||
* | add right-match tests for rc.conf | Dave Eddy | 2014-08-29 | 1 | -3/+33 |
| | |||||
* | add checks for partial matches in enable/disable | Lamont Granquist | 2014-08-29 | 1 | -1/+15 |
| | |||||
* | refactoring freebsd provider + unit tests | Lamont Granquist | 2014-08-29 | 5 | -263/+444 |
| | |||||
* | modernize freebsd service spec | Lamont Granquist | 2014-08-29 | 1 | -162/+187 |
| | |||||
* | add trailing = to regex for freebsd service deletion | Dave Eddy | 2014-08-29 | 1 | -1/+1 |
| | |||||
* | another instance of loose regex | Dave Eddy | 2014-08-29 | 1 | -1/+1 |
| | |||||
* | tighten up /etc/rc.conf regex | Dave Eddy | 2014-08-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | I've run into a fun issue on FreeBSD 10 when trying to disable `syslogd`, and enable `rsyslogd`. Initially, the /etc/rc.conf config file may look something like this syslogd_enable="YES" rsyslogd_enable="NO" And after chef it *should* look this rsyslogd_enable="YES" syslogd_enable="NO" However, because the regex isn't as tight as it could be, it will search for `syslogd_enable="(\w+)"`, and erroneously match the `rsyslogd`, which leads Chef to believe that `syslogd` is enabled, when in reality it isn't. This change simply anchors the regex with `^` so the pattern must match at the beginning of the line. | ||||
* | Merge pull request #1947 from opscode/adamedx/fix-travis-mysql-client | Adam Edwards | 2014-08-28 | 1 | -2/+2 |
|\ | | | | | change mysql-client package | ||||
| * | change mysql-client package | Lamont Granquist | 2014-08-28 | 1 | -2/+2 |
|/ | | | | mysql cookbook now installs mysql-client-5.5 by default | ||||
* | Widen chef-zero dependency correctly | John Keiser | 2014-08-28 | 1 | -1/+1 |
| | |||||
* | Merge pull request #1895 from opscode/mcquin/CHEF-5282 | Serdar Sutay | 2014-08-28 | 6 | -1/+145 |
|\ | | | | | Add --ssl-verify-mode and --[no-]verify-api-cert options. | ||||
| * | CHANGELOG info for the new bootstrap CLI options. | Serdar Sutay | 2014-08-28 | 2 | -1/+3 |
| | | |||||
| * | Use existing Chef::Config values for verify_api_cert and ssl_verify_mode ↵ | Serdar Sutay | 2014-08-26 | 4 | -54/+90 |
| | | | | | | | | during bootstrap. | ||||
| * | Add --ssl-verify-mode and --[no-]verify-api-cert options. | Claire McQuin | 2014-08-26 | 4 | -0/+106 |
| | | |||||
* | | Remove deprecated @node ivarsjk/remove_deprecated_ivars | John Keiser | 2014-08-27 | 3 | -10/+3 |
| | | |||||
* | | Clean up acl data handler, add username to user handler for cheffishjk/data_handler_cleanup | John Keiser | 2014-08-27 | 2 | -2/+3 |
| | | |||||
* | | Merge pull request #1896 from opscode/lcg/1869 | lamont-granquist | 2014-08-26 | 1 | -2/+7 |
|\ \ | |/ |/| | response.body may be nil | ||||
| * | response.body may be nil | Lamont Granquist | 2014-08-22 | 1 | -2/+7 |
| | | | | | | | | | | | | we can get back things like http 204 with no response body and calling chomp on that throws a bad stack track. this sends nil back with the response and the caller can determine how to handle the 204. | ||||
* | | Merge pull request #1885 from opscode/sersut/bootstrap-12 | Serdar Sutay | 2014-08-26 | 14 | -552/+357 |
|\ \ | | | | | | | Chef 12 bootstrap cleanup | ||||
| * | | Update CHANGELOG and RELEASE_NOTES with bootstrap changes. | Serdar Sutay | 2014-08-26 | 2 | -0/+11 |
| | | |