-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaning up cruft from old releases and clarifying examples/readmes
- Loading branch information
jtimberman
committed
Jun 19, 2010
1 parent
2594ccc
commit 8825e73
Showing
8 changed files
with
30 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,4 +63,3 @@ task :bundle_cookbook, :cookbook do |t, args| | |
|
||
FileUtils.rm_rf temp_dir | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
Creating SSL certificates is a common task done in web application | ||
infrastructures, so a rake task is provided to generate certificates. | ||
These certificates are stored here by the ssl_cert task. | ||
These certificates are stored here by the ssl_cert task. To generate a | ||
certificate set for a new monitoring server, for example: | ||
|
||
rake ssl_cert FQDN=monitoring.example.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
# | ||
# Example Chef Client Config File | ||
# | ||
# Use Opscode's chef cookbook for managing chef itself, | ||
# instead of using this file. It is provided as an example. | ||
# You can generate the client.rb with correct settings with knife: | ||
# | ||
# knife configure client ./config | ||
|
||
log_level :info | ||
log_location STDOUT | ||
ssl_verify_mode :verify_none | ||
chef_server_url "http://chef.example.com:4000" | ||
chef_server_url "https://api.opscode.com/organizations/ORGNAME" | ||
|
||
validation_client_name "chef-validator" | ||
validation_key "/etc/chef/validation.pem" | ||
client_key "/etc/chef/client.pem" | ||
|
||
file_store_path "/srv/chef/file_store" | ||
file_cache_path "/srv/chef/cache" | ||
|
||
pid_file "/var/run/chef/chef-client.pid" | ||
|
||
Mixlib::Log::Formatter.show_time = true | ||
validation_client_name "ORGNAME-validator" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
# This file provided as an example. Run 'knife configure' to generate a | ||
# config file for your local user. | ||
# This file is provided as an example when using the Opscode Platform | ||
# as the Chef Server. You were prompted to download a config file | ||
# when you signed up for the Opscode Platform that looks like this. | ||
# | ||
# Replace USERNAME with your Opscode username and ORGNAME | ||
# with your Opscode Platform organization name. | ||
# | ||
current_dir = File.dirname(__FILE__) | ||
log_level :info | ||
log_location STDOUT | ||
node_name 'chef_admin' | ||
client_key '/home/chef_admin/.chef/chef_admin.pem' | ||
validation_client_name 'chef-validator' | ||
validation_key '/home/chef_admin/.chef/chef-validator.pem' | ||
chef_server_url 'http://chef.example.com:4000' | ||
node_name "USERNAME" | ||
client_key "#{current_dir}/USERNAME.pem" | ||
validation_client_name "ORGANIZATION-validator" | ||
validation_key "#{current_dir}/ORGANIZATION-validator.pem" | ||
chef_server_url "https://api.opscode.com/organizations/ORGANIZATION" | ||
cache_type 'BasicFile' | ||
cache_options( :path => '/home/chef_admin/.chef/checksums' ) | ||
cookbook_path [ './cookbooks', './site-cookbooks' ] | ||
cache_options( :path => "#{ENV['HOME']}/.chef/checksums" ) | ||
cookbook_path ["#{current_dir}/../cookbooks"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
Remove this file to clone an upstream git repository of cookbooks | ||
Download cookbooks into this directory from the Opscode Cookbooks site | ||
using knife, or remove this file to clone an upstream Git Repository. |