Sha256: 6176c79beb736cfd65e8f613057c2ce9d5816a3f255830c7dcb4320d393d1448
Contents?: true
Size: 1.57 KB
Versions: 19
Compression:
Stored size: 1.57 KB
Contents
### # Company and SSL Details ### # The company name - used for SSL certificates, and in srvious other places COMPANY_NAME = "" # The Country Name to use for SSL Certificates SSL_COUNTRY_NAME = "" # The State Name to use for SSL Certificates SSL_STATE_NAME = "" # The Locality Name for SSL - typically, the city SSL_LOCALITY_NAME = "" # What department? SSL_ORGANIZATIONAL_UNIT_NAME = "" # The SSL contact email address SSL_EMAIL_ADDRESS = "" # License for new Cookbooks # Can be :apachev2 or :none NEW_COOKBOOK_LICENSE = :none ########################## # Chef Repository Layout # ########################## # Where to install upstream cookbooks for serving COOKBOOK_PATH = "/srv/chef/cookbooks" # Where to install site-local modifications to upstream cookbooks SITE_COOKBOOK_PATH = "/srv/chef/site-cookbooks" # Where to install roles ROLE_PATH = "/srv/chef/roles" # Chef Config Path CHEF_CONFIG_PATH = "/etc/chef" # The location of the Chef Server Config file (on the server) CHEF_SERVER_CONFIG = File.join(CHEF_CONFIG_PATH, "server.rb") # The location of the Chef Client Config file (on the client) CHEF_CLIENT_CONFIG = File.join(CHEF_CONFIG_PATH, "client.rb") ### # Useful Extras (which you probably don't need to change) ### # The top of the repository checkout TOPDIR = File.expand_path(File.join(File.dirname(__FILE__), "..")) # Where to store certificates generated with ssl_cert CADIR = File.expand_path(File.join(TOPDIR, "certificates")) # Where to store the mtime cache for the recipe/template syntax check TEST_CACHE = File.expand_path(File.join(TOPDIR, ".rake_test_cache"))
Version data entries
19 entries across 19 versions & 1 rubygems