summaryrefslogtreecommitdiff
path: root/chef-utils/lib/chef-utils/dist/server.rb
blob: 797f0efbf231e6343df5c132fc933db283353cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module ChefUtils
  module Dist
    class Server
      # The name of the server product
      PRODUCT = "Chef Infra Server".freeze

      # Assumed location of the chef-server configuration directory
      # TODO: This actually sounds like a job for ChefUtils methods
      CONF_DIR = "/etc/chef-server".freeze
    end
  end
end