diff options
| author | tyler-ball <tyleraball@gmail.com> | 2014-11-20 13:49:13 -0800 |
|---|---|---|
| committer | tyler-ball <tyleraball@gmail.com> | 2014-11-20 13:49:13 -0800 |
| commit | 0ce38f5cdb511ffc149a7065cca96bb30347e56b (patch) | |
| tree | 6ad9bdb5ced43ca6fbb47fb30a32b851a7356a2f | |
| parent | 9eac701363adba6d0c44ab239444e70be5119cac (diff) | |
| download | chef-tball/audit-duplication-test.tar.gz | |
Oops - this was causing output to be an array instead of a stringtball/audit-duplication-test
| -rw-r--r-- | lib/chef/dsl/audit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/dsl/audit.rb b/lib/chef/dsl/audit.rb index 841d141ccb..0f4444afd4 100644 --- a/lib/chef/dsl/audit.rb +++ b/lib/chef/dsl/audit.rb @@ -30,7 +30,7 @@ class Chef name = args[0] raise AuditNameMissing if name.nil? || name.empty? - run_context.controls_groups << Chef::Audit::Controls.new(run_context, args, &block) + run_context.controls_groups << Chef::Audit::Controls.new(run_context, *args, &block) end end |
