summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Catch up with latest maintainers actiontm/machine_readable_maintainersThom May2015-04-101-1/+11
|
* Switch MAINTAINERS to be a TOML docThom May2015-03-202-134/+207
| | | | | This allows us to easily parse the maintainers file in a programatic way, for things like updating github teams, autoassigning reviewers.
* Merge pull request #3098 from chef/lcg/bump-ffi-yajlLamont Granquist2015-03-171-1/+1
|\ | | | | bumping ffi-yajl to pick up 2.x
| * bumping ffi-yajl to pick up 2.xlcg/bump-ffi-yajlLamont Granquist2015-03-171-1/+1
|/ | | | 1.x still works fine, so leaving the lower floor in place.
* Merge pull request #3093 from chef/ksubrama/syntax_cacheKartik Null Cating-Subramanian2015-03-171-1/+2
|\ | | | | Change the default value of syntax cache to the latest value.
| * Change the default value of syntax cache to the latest value.ksubrama/syntax_cacheKartik Null Cating-Subramanian2015-03-161-1/+2
| |
* | Merge pull request #3086 from chef/ksubrama/test_fixKartik Null Cating-Subramanian2015-03-178-12/+12
|\ \ | | | | | | Fix faulty umask logic used in spec tests.
| * | Fix faulty umask logic used in spec tests.Kartik Null Cating-Subramanian2015-03-168-12/+12
| | |
* | | Update CHANGELOG for #3090Bryan McLellan2015-03-171-0/+1
| | |
* | | We should not change how exceptions are raised if audit mode is disabledJay Mundrawala2015-03-172-22/+72
| | |
* | | Merge pull request #3061 from cmluciano/cml/inspecttostringThom May2015-03-171-1/+1
|\ \ \ | |_|/ |/| | Change inspect to string to be more human-readable.
| * | Change inspect to string to be more human-readable.cmluciano2015-03-111-1/+1
| | | | | | | | | | | | Should close [Issue 2863](https://github.com/chef/chef/issues/2863)
* | | Merge pull request #3064 from juliandunn/fix-audit-terminologyJulian C. Dunn2015-03-167-11/+11
|\ \ \ | | | | | | | | make audit terminology consistent
| * | | Fix testJulian C. Dunn2015-03-111-1/+1
| | | |
| * | | Fix more incorrect terminologyJulian C. Dunn2015-03-112-2/+2
| | | |
| * | | Make terminology consistent about audits versus controlsJulian C. Dunn2015-03-114-8/+8
| | | |
* | | | Disable the exitstatus 3 testBryan McLellan2015-03-161-4/+1
| | | | | | | | | | | | | | | | | | | | This relies on a timer and even though we increased it in #3039 we've still seen intermittent failures from it. Mark it volatile and move on.
* | | | Update CHANGELOG in master for 3022 + 3059Bryan McLellan2015-03-161-0/+5
| | | |
* | | | Assert that candidate_version gets set when yum resource uses sourceJay Mundrawala2015-03-161-0/+14
| | | |
* | | | Yum was failing to install packages when a source was providedJay Mundrawala2015-03-161-13/+16
| |_|/ |/| | | | | | | | | | | | | | | | | | | | This fixes #3059 The package provider was expecting that candidate_versions be populated, however in the case where a source was being provided, it the version was being set to nil.
* | | Merge pull request #3049 from jaymzh/el_maintainerThom May2015-03-161-0/+1
|\ \ \ | | | | | | | | Propose myself as an EL maintainer.
| * | | Propose myself as an EL maintainer.Phil Dibowitz2015-03-081-0/+1
| | | |
* | | | Merge pull request #3069 from chef/jdm/poshJay Mundrawala2015-03-131-1/+2
|\ \ \ \ | | | | | | | | | | Mark failing test as pending on versions of powershell < 4
| * | | | Mark failing test as pending on versions of powershell < 4jdm/poshJay Mundrawala2015-03-121-1/+2
| | |/ / | |/| | | | | | | | | | | | | | This case has never worked before 6c724e866274a728bc66740ab352db7da7d7958f. It was fixed for 4, however it seems that does not apply to versions < 4.
* | | | Merge pull request #3060 from chef/jdm/useradd-specsJay Mundrawala2015-03-131-13/+26
|\ \ \ \ | |/ / / |/| | | Cleanup user directories if state was leftover from previous run
| * | | Use FileUtils to delete directoryjdm/useradd-specsJay Mundrawala2015-03-121-1/+1
| | | |
| * | | Use less common dir namesJay Mundrawala2015-03-121-14/+14
| | | |
| * | | Use User resource to cleanupJay Mundrawala2015-03-121-5/+4
| | | |
| * | | Freebsd stuffJay Mundrawala2015-03-121-1/+5
| | | |
| * | | Cleanup user directories if state was leftover from previous runJay Mundrawala2015-03-121-0/+10
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are seeing failures in our CI relating to state not being cleaned up in a previous run: ``` 1) Chef::Provider::User::Useradd action :create when the user already exists and home directory is updated and manage_home is enabled moves the home directory to the new location Failure/Error: user_resource.run_action(:create) Mixlib::ShellOut::ShellCommandFailed: user[TEST USER RESOURCE] (dynamically defined) had an error: Mixlib::ShellOut::ShellCommandFailed: Expected process to exit with [0], but received '12' ---- Begin output of ["usermod", "-d", "/home/bar", "-m", "cf-test"] ---- STDOUT: STDERR: usermod: directory /home/bar exists ---- End output of ["usermod", "-d", "/home/bar", "-m", "cf-test"] ---- Ran ["usermod", "-d", "/home/bar", "-m", "cf-test"] returned 12 # ./lib/chef/mixin/shell_out.rb:56:in `shell_out!' # ./lib/chef/provider/user/useradd.rb:42:in `manage_user' # ./lib/chef/provider/user.rb:137:in `block in action_create' # ./lib/chef/mixin/why_run.rb:52:in `call' # ./lib/chef/mixin/why_run.rb:52:in `add_action' # ./lib/chef/provider.rb:180:in `converge_by' # ./lib/chef/provider/user.rb:136:in `action_create' # ./lib/chef/provider.rb:145:in `run_action' # ./lib/chef/resource.rb:561:in `run_action' # ./spec/functional/resource/user/useradd_spec.rb:336:in `block (4 levels) in <top (required)>' ```
* | | Merge pull request #3039 from chef/tball/nightliesTyler Ball2015-03-112-4/+8
|\ \ \ | | | | | | | | Chef-DK nightlies on debian and el6 have been failing on these timing-based tests, doing a quick fix
| * | | Updating comment for future userstball/nightliestyler-ball2015-03-101-1/+2
| | | |
| * | | Changing tactics - excluding test from chef verify because I cannot figure ↵tyler-ball2015-03-102-2/+5
| | | | | | | | | | | | | | | | out why it fails
| * | | Nightlies on debian and el6 have been failing on these timing-based tests, ↵tyler-ball2015-03-101-4/+4
| | | | | | | | | | | | | | | | doing a quick fix
* | | | Merge branch 'gh2k-msiprops-chomp'Steven Murawski2015-03-111-1/+1
|\ \ \ \ | |_|_|/ |/| | |
| * | | Remove trailing null character from msi propertiesSimon Detheridge2015-03-111-1/+1
|/ / /
* | | Merge pull request #3029 from cl-lab-k/fix_chef_gem_compile_time_commentThom May2015-03-111-1/+1
|\ \ \ | | | | | | | | chef_gem_compile_time's nil is the same as true
| * | | chef_gem_compile_time's nil is the same as trueHIGUCHI Daisuke2015-03-051-1/+1
| | | | | | | | | | | | | | | | according to lib/chef/resource/chef_gem.rb#after_created
* | | | Merge pull request #3052 from chef/jdm/dscl-fixJay Mundrawala2015-03-102-1/+2
|\ \ \ \ | | | | | | | | | | dscl specs should only run on mac
| * | | | dscl specs should only run on macjdm/dscl-fixJay Mundrawala2015-03-102-1/+2
|/ / / /
* | | | Merge pull request #3050 from chef/jdm/osxJay Mundrawala2015-03-105-2/+21
|\ \ \ \ | |_|/ / |/| | | Fix dscl issues for osx
| * | | Dont run useradd_spec on osxjdm/osxJay Mundrawala2015-03-093-0/+16
| | | |
| * | | Modify dscl_spec to runJay Mundrawala2015-03-091-1/+0
| | | |
| * | | Sometimes plutil returns an invalid utf-8 string, which gets interpreted as ↵Jay Mundrawala2015-03-091-1/+5
| | |/ | |/| | | | | | | | | | | | | ascii This causes plist gem to crash
* | | Merge pull request #3004 from chef/lcg/deploy-provider-nillableLamont Granquist2015-03-095-89/+146
|\ \ \ | | | | | | | | add specs for nilling deploy parameters
| * | | remove unnecessary code editlcg/deploy-provider-nillableLamont Granquist2015-03-051-101/+98
| | | |
| * | | make deploy provider support nilLamont Granquist2015-03-055-187/+212
| | | | | | | | | | | | | | | | | | | | | | | | | | | | necessary edits to protect deploy provider and git provider when the resource parameters are reset to nil. also clean up the use of @new_resource in the deploy provider.
| * | | add specs for nilling deploy parametersLamont Granquist2015-03-051-0/+35
| | | |
* | | | Merge pull request #3045 from chef/jdm/dev-versionJay Mundrawala2015-03-091-1/+1
|\ \ \ \ | |_|/ / |/| | | Use dev version in master
| * | | Use dev version in masterjdm/dev-versionJay Mundrawala2015-03-061-1/+1
|/ / /