summaryrefslogtreecommitdiff
path: root/lib/chef/config.rb
Commit message (Collapse)AuthorAgeFilesLines
* Resolving conflicsts from giant rebasetyler-ball2014-12-171-38/+41
|
* Disable audit-mode by default.Claire McQuin2014-12-171-1/+6
| | | | | * Modify command line option --audit-mode to accept parameters enabled, disabled, or audit-only. * Emit a warning if audit-mode is enabled or audit-only.
* Instructions on running audit mode examples.Serdar Sutay2014-12-171-1/+3
|
* Adding audit mode JSON formattertyler-ball2014-12-171-41/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | First pass at DSL additions Renaming DSL methods to match the spec Creating our own example group class to simplify adding examples to the spec runner Adding logic for exceptions from converge phase not interfering with audit phase and vice-versa Adding error handling so saving node doesn't prevent us from running audit mode - decouples converge phase and audit phase more Updating for github comments Add setup phase to audit-mode. Refactor runner into own class. Fix typo tie things together Adding first round of formatter integration - STDOUT doc formatter Preparing for demo - using rspec documentation formatter for output instead of the proxy Add serverspec types and matchers. add rspec/its Add gems as core dependencies Updating with changes from demo Updating with @mcquin and @lamont comments Getting rid of unused method Wiring audit event proxy to send events correctly to the audit_reporter removing old pry debugging statement Removing unecessary todo Sending to correct server URL Fixing TODOs Adding uncaught error information
* Make sure we don't close the output_stream after running rspec.Serdar Sutay2014-12-171-0/+1
|
* A memorial for Ezra ZygmuntowiczAdam Jacob2014-12-011-0/+1
| | | | | | | | Adding the --ez switch to Chef Solo, to memorialize Ezra. He was the father of Chef Solo, and without his early advocacy and evangelism, there would be no Chef today. Rest in peace, Ez.
* Merge branch 'master' into tball/contrib-passtyler-ball2014-11-251-1/+1
|\ | | | | | | | | Conflicts: CHANGELOG.md
| * suppress locale -a warnings on windowsLamont Granquist2014-11-251-1/+1
| | | | | | | | | | need the '!' to throw exceptions, or else the rescue clause is never run.
* | Merge branch 'typofixes-vlajos-20141107' of github.com:vlajos/chef into ↵tyler-ball2014-11-251-1/+1
|\ \ | |/ |/| | | tball/contrib-pass
| * typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-081-1/+1
| |
* | Merge pull request #2425 from opscode/lcg/memoize-localemh/recoverLamont Granquist2014-11-181-33/+33
|\ \ | | | | | | stop recomputing locale -a constantly
| * | stop recomputing locale -a constantlylcg/memoize-localeLamont Granquist2014-11-171-33/+33
| |/ | | | | | | | | | | fixes an outstanding issue on the locale -a guessing also fixes perf issues in the rspec tests (e.g. deploy provider)
* | Dedicated error for content staging issues. Comment fixes in config.rb.Serdar Sutay2014-11-171-2/+2
| |
* | Introduct :auto mode for :file_staging_uses_destdir which tries the dest_dir ↵Serdar Sutay2014-11-141-4/+6
|/ | | | first and falls back to tmpdir when unsuccessful.
* Make client.pem being a symlink a configurable optionRyan Cragun2014-11-071-0/+6
|
* Make sure that :distro is evaluated later than :bootstrap_template and ↵Serdar Sutay2014-11-071-1/+1
| | | | :template_file in order for knife cloud plugins to work corectly with Chef 12.
* Disable eventlogger on win2k3Jay Mundrawala2014-10-281-1/+1
|
* Use windows evt log by default on windowsJay Mundrawala2014-10-221-1/+9
|
* Added function to add event loggerJay Mundrawala2014-10-221-0/+5
|
* Use shell_out to get localesClaire McQuin2014-10-151-11/+13
|
* Standardize guessed localeClaire McQuin2014-10-131-1/+4
|
* Split locale -a result safely, detect utf8, log message to debug.Claire McQuin2014-10-131-4/+13
|
* Quietly keep locale en_US.UTF-8 on Windowsbtm/windows-localeBryan McLellan2014-09-261-1/+5
| | | | | | We're not sure if anything cares what we set the locale to this way on Windows. For now we'll leave it as en_US.UTF-8 until we find a use case that indicates we should do something else.
* change default of :ssl_verify_mode to :verify_peerClaire McQuin2014-09-151-4/+5
|
* force the default internal/external encodingLamont Granquist2014-09-081-0/+9
|
* add config option for the default_localeLamont Granquist2014-09-081-0/+36
|
* Remove config file jail, replaced with config skip optiondanielsdeleo2014-09-031-5/+1
|
* Move Chef::Config path functions to Chef::Util::PathHelperJohn Keiser2014-08-301-62/+23
|
* Fix Windows path bugs, run all config tests against WindowsJohn Keiser2014-08-301-5/+22
|
* Switch back to ChefZero::RSpec version 3jk/rspec_zero_3John Keiser2014-08-291-1/+1
| | | | And add some Enterprise tests (fix an acl delete issue)
* Remove encrypted_data_bag_secret distribution via Chef::Config and enable ↵Serdar Sutay2014-08-261-4/+2
| | | | distributing it via knife[:secret] and knife[:secret_file].
* Deprecate --distro and --template-file options in favor of --template.Serdar Sutay2014-08-261-0/+1
|
* Use path_join to create local-mode-cacheJohn Keiser2014-08-231-5/+5
| | | | Always give config_dir a value
* Enable client-side key generation by default (resolves ↵Claire McQuin2014-08-141-4/+4
| | | | https://github.com/opscode/chef/issues/1711)
* Merge pull request #1591 from onddo/CHEF-5356-gcm-2Claire McQuin2014-08-071-1/+2
|\ | | | | [CHEF-5356-gcm(2)] Encrypted data bags should use different HMAC key and include the IV in the HMAC
| * [CHEF-5356-gcm] docs updated to clarify ruby 2 requirementXabier de Zuazo2014-07-011-1/+1
| |
| * [CHEF-5356-gcm] Chef::Config: Added a comment about EncryptedDataBag version 3Xabier de Zuazo2014-07-011-1/+2
| |
* | make no_lazy_load the defaultLamont Granquist2014-07-261-0/+24
| | | | | | | | modernization of spec tests and additional specs added
* | change file_staging_uses_destdir default to trueLamont Granquist2014-07-261-1/+1
| |
* | Support --chef-zero-port=A-B,C,D-E syntax for finding portsJohn Keiser2014-07-071-1/+1
|/
* CHEF-5365 - if user home directory is not set via environment, then default ↵brettcave2014-06-131-2/+2
| | | | user_home to the current directory.
* Merge pull request #1436 from kramvan1/CHEF-3193Claire McQuin2014-06-101-0/+1
|\ | | | | CHEF-3193: LOCK_TIMEOUT in yum-dump.py should be configurable
| * CHEF-3193: LOCK_TIMEOUT in yum-dump.py should be configurableMark Vanderwiel2014-05-291-0/+1
| | | | | | | | | | | | Allow yum lock timeout from Chef Config yum_timeout. Issue: CHEF-3193
* | Delete duplicate :host defaultJohn Keiser2014-06-051-2/+1
| |
* | making the chef-zero host configurable for knife and chef-clientLuke Amdor2014-06-051-0/+1
| |
* | add comment denoting workaroundCHEF-Issues-1461Claire McQuin2014-06-031-0/+1
| |
* | fix spacingClaire McQuin2014-06-031-1/+1
| |
* | automatically enable verify_api_cert when in local-modeClaire McQuin2014-06-031-2/+3
| |
* | Merge pull request #1442 from opscode/CHEF-5259Claire McQuin2014-05-291-2/+20
|\ \ | |/ |/| Put cache at HOME/.chef if /var/chef can't be accessed.
| * log cache_path switch to infoClaire McQuin2014-05-221-1/+1
| |