Sha256: 800fdfad5d8ca8aeea5e4a9c5b31407d4520c4bd146f0f289c72543addbcb7df

Contents?: true

Size: 1.34 KB

Versions: 16

Compression:

Stored size: 1.34 KB

Contents

class Chef
  class Dist
    # This class is not fully implemented, depending on it is not recommended!
    # When referencing a product directly, like Chef (Now Chef Infra)
    PRODUCT = "Chef Infra Client".freeze

    # The name of the server product
    SERVER_PRODUCT = "Chef Infra Server".freeze

    # The client's alias (chef-client)
    CLIENT = "chef-client".freeze

    # name of the automate product
    AUTOMATE = "Chef Automate".freeze

    # The chef executable, as in `chef gem install` or `chef generate cookbook`
    EXEC = "chef".freeze

    # product website address
    WEBSITE = "https://chef.io".freeze

    # Chef-Zero's product name
    ZERO = "Chef Infra Zero".freeze

    # Chef-Solo's product name
    SOLO = "Chef Infra Solo".freeze

    # The chef-zero executable (local mode)
    ZEROEXEC = "chef-zero".freeze

    # The chef-solo executable (legacy local mode)
    SOLOEXEC = "chef-solo".freeze

    # The chef-shell executable
    SHELL = "chef-shell".freeze

    # Configuration related constants
    # The chef-shell configuration file
    SHELL_CONF = "chef_shell.rb".freeze

    # The configuration directory
    CONF_DIR = "/etc/#{Chef::Dist::EXEC}".freeze

    # The user's configuration directory
    USER_CONF_DIR = ".chef".freeze

    # The server's configuration directory
    SERVER_CONF_DIR = "/etc/chef-server".freeze
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
chef-15.5.17 lib/chef/dist.rb
chef-15.5.17-universal-mingw32 lib/chef/dist.rb
chef-15.5.16 lib/chef/dist.rb
chef-15.5.16-universal-mingw32 lib/chef/dist.rb
chef-15.5.15 lib/chef/dist.rb
chef-15.5.15-universal-mingw32 lib/chef/dist.rb
chef-15.5.9 lib/chef/dist.rb
chef-15.5.9-universal-mingw32 lib/chef/dist.rb
chef-15.4.45 lib/chef/dist.rb
chef-15.4.45-universal-mingw32 lib/chef/dist.rb
chef-15.3.14 lib/chef/dist.rb
chef-15.3.14-universal-mingw32 lib/chef/dist.rb
chef-15.2.20 lib/chef/dist.rb
chef-15.2.20-universal-mingw32 lib/chef/dist.rb
chef-15.1.36 lib/chef/dist.rb
chef-15.1.36-universal-mingw32 lib/chef/dist.rb