summaryrefslogtreecommitdiff
path: root/lib/chef/provider/template
diff options
context:
space:
mode:
authorsersut <serdar@opscode.com>2013-05-16 12:32:23 -0700
committersersut <serdar@opscode.com>2013-05-16 12:32:23 -0700
commite46f99d074e2d83cdb08831d752f3b161c076a76 (patch)
tree3e50468e4bf4a236a689d73b2bf097bfded84350 /lib/chef/provider/template
parent273d10f2fe8cef115982398858ff34f92a250018 (diff)
downloadchef-e46f99d074e2d83cdb08831d752f3b161c076a76.tar.gz
Move file content management logic outside of providers under Chef::FileContentManagement for reusability in the future.
Diffstat (limited to 'lib/chef/provider/template')
-rw-r--r--lib/chef/provider/template/content.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/provider/template/content.rb b/lib/chef/provider/template/content.rb
index 1d9b33fdb9..756db4642c 100644
--- a/lib/chef/provider/template/content.rb
+++ b/lib/chef/provider/template/content.rb
@@ -17,12 +17,12 @@
#
require 'chef/mixin/template'
-require 'chef/provider/file_content_base'
+require 'chef/file_content_management/content_base'
class Chef
class Provider
class Template
- class Content < Chef::Provider::FileContentBase
+ class Content < Chef::FileContentManagement::ContentBase
include Chef::Mixin::Template