OSDN Git Service

add repository update flag.
[metasearch/grid-chef-repo.git] / config / rake.rb
1 # Configure the Rakefile's tasks.
2
3 ###
4 # Company and SSL Details
5 # Used with the ssl_cert task.
6 ###
7
8 # The company name - used for SSL certificates, and in srvious other places
9 COMPANY_NAME = "Example Com"
10
11 # The Country Name to use for SSL Certificates
12 SSL_COUNTRY_NAME = "US"
13
14 # The State Name to use for SSL Certificates
15 SSL_STATE_NAME = "Several"
16
17 # The Locality Name for SSL - typically, the city
18 SSL_LOCALITY_NAME = "Locality"
19
20 # What department?
21 SSL_ORGANIZATIONAL_UNIT_NAME = "Operations"
22
23 # The SSL contact email address
24 SSL_EMAIL_ADDRESS = "ops@example.com"
25
26 # License for new Cookbooks
27 # Can be :apachev2 or :none
28 NEW_COOKBOOK_LICENSE = :apachev2
29
30 ###
31 # Useful Extras (which you probably don't need to change)
32 ###
33
34 # The top of the repository checkout
35 TOPDIR = File.expand_path(File.join(File.dirname(__FILE__), ".."))
36
37 # Where to store certificates generated with ssl_cert
38 CADIR = File.expand_path(File.join(TOPDIR, "certificates"))