summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs/data_handler/policy_data_handler.rb
blob: 769c13c364a699b21fb3073edaae2d1d6d83a882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'chef/chef_fs/data_handler/data_handler_base'

class Chef
  module ChefFS
    module DataHandler
      class PolicyDataHandler < DataHandlerBase

        def normalize(policy, entry)
          policy
        end
      end
    end
  end
end