diff options
author | tyler-ball <tyleraball@gmail.com> | 2014-10-31 15:05:10 -0700 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2014-12-17 18:47:27 -0800 |
commit | 3a26043bcd362f600aacb19bb106c4c9cba899a3 (patch) | |
tree | 1bb44ae52914b18bd294f85635daf32e2f195055 | |
parent | 73594ef27855e6f1dabb57fdffa04adc881f06be (diff) | |
download | chef-3a26043bcd362f600aacb19bb106c4c9cba899a3.tar.gz |
Adding audit mode JSON formatter
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
-rw-r--r-- | lib/chef/run_context.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/chef/run_context.rb b/lib/chef/run_context.rb index c6d11eaaa1..0999ae57c1 100644 --- a/lib/chef/run_context.rb +++ b/lib/chef/run_context.rb @@ -53,9 +53,6 @@ class Chef # The list of control groups to execute during the audit phase attr_accessor :controls_groups - # Chef::ProviderResolver for this run - attr_accessor :provider_resolver - # A Hash containing the immediate notifications triggered by resources # during the converge phase of the chef run. attr_accessor :immediate_notification_collection |