summaryrefslogtreecommitdiff
path: root/chef-config/lib/chef-config/dist.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef-config/lib/chef-config/dist.rb')
-rw-r--r--chef-config/lib/chef-config/dist.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/chef-config/lib/chef-config/dist.rb b/chef-config/lib/chef-config/dist.rb
index 01db6765fb..d46c9c99d6 100644
--- a/chef-config/lib/chef-config/dist.rb
+++ b/chef-config/lib/chef-config/dist.rb
@@ -1,10 +1,19 @@
module ChefConfig
class Dist
- # The chef executable name. Also used in directory names.
+ # The chef executable name.
EXEC = "chef".freeze
+ # The client's alias (chef-client)
+ CLIENT = "chef-client".freeze
+
+ # A short name for the product
+ SHORT = "chef".freeze
+
# The suffix for Chef's /etc/chef, /var/chef and C:\\Chef directories
# "cinc" => /etc/cinc, /var/cinc, C:\\cinc
DIR_SUFFIX = "chef".freeze
+
+ # The user's configuration directory
+ USER_CONF_DIR = ".chef".freeze
end
end