diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2020-02-20 13:39:28 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2020-02-21 14:13:15 -0800 |
commit | 9b3cd8affcd5e73641f1135e5fc17ae89b50eec9 (patch) | |
tree | 435bfff68ab178a504b8b11e11c0b5b2f60a6551 /lib/chef/resource/homebrew_tap.rb | |
parent | 04979a3ba5ca32e3c97ae492eae84829994697a0 (diff) | |
download | chef-9b3cd8affcd5e73641f1135e5fc17ae89b50eec9.tar.gz |
Convert more resources to unified_mode
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/resource/homebrew_tap.rb')
-rw-r--r-- | lib/chef/resource/homebrew_tap.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/resource/homebrew_tap.rb b/lib/chef/resource/homebrew_tap.rb index 23738d6e51..15374f5a15 100644 --- a/lib/chef/resource/homebrew_tap.rb +++ b/lib/chef/resource/homebrew_tap.rb @@ -2,7 +2,7 @@ # Author:: Joshua Timberman (<jtimberman@chef.io>) # Author:: Graeme Mathieson (<mathie@woss.name>) # -# Copyright:: 2011-2018, Chef Software, Inc. +# Copyright:: 2011-2020, Chef Software Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -23,6 +23,8 @@ require_relative "../mixin/homebrew_user" class Chef class Resource class HomebrewTap < Chef::Resource + unified_mode true + resource_name :homebrew_tap provides(:homebrew_tap) { true } |