diff options
author | Serdar Sutay <serdar@opscode.com> | 2015-02-11 08:42:28 -0800 |
---|---|---|
committer | Serdar Sutay <serdar@opscode.com> | 2015-02-11 08:42:28 -0800 |
commit | 5a78c483d2a40b0de04609f7f6c829763fa9938b (patch) | |
tree | ecce6200d11e71c8680291821195a27d8e45e10a /lib/chef/event_dispatch | |
parent | 68bab0b362c47e5a75492e57094f72ecee1171ae (diff) | |
parent | 4cbc6274889ddedf105ec99200f53b50439df273 (diff) | |
download | chef-5a78c483d2a40b0de04609f7f6c829763fa9938b.tar.gz |
Merge pull request #2758 from chef/mcquin/control_group
Change audit DSL method controls to control_group.
Diffstat (limited to 'lib/chef/event_dispatch')
-rw-r--r-- | lib/chef/event_dispatch/base.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/event_dispatch/base.rb b/lib/chef/event_dispatch/base.rb index 25dd9fd1b2..7274105802 100644 --- a/lib/chef/event_dispatch/base.rb +++ b/lib/chef/event_dispatch/base.rb @@ -248,15 +248,15 @@ class Chef def audit_phase_failed(exception) end - # Signifies the start of a `controls` block with a defined name + # Signifies the start of a `control_group` block with a defined name def control_group_started(name) end - # An example in a `controls` block completed successfully + # An example in a `control_group` block completed successfully def control_example_success(control_group_name, example_data) end - # An example in a `controls` block failed with the provided error + # An example in a `control_group` block failed with the provided error def control_example_failure(control_group_name, example_data, error) end |