diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-07-18 14:03:16 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-07-18 14:03:16 -0400 |
commit | e7899aa1f904cfe8daf8cf7652f3be6a7381d09c (patch) | |
tree | cb9c8b369c6204fedd394b460ec10578da731a4d /templates/chef_client.rb.tmpl | |
parent | ff3a564884f27f130f546c899ebc8805071be3d4 (diff) | |
parent | a541b34fcddc101ba1c5128dc577482188f0760b (diff) | |
download | vyos-cloud-init-e7899aa1f904cfe8daf8cf7652f3be6a7381d09c.tar.gz vyos-cloud-init-e7899aa1f904cfe8daf8cf7652f3be6a7381d09c.zip |
add chef [Avishai Ish-Shalom]
Diffstat (limited to 'templates/chef_client.rb.tmpl')
-rw-r--r-- | templates/chef_client.rb.tmpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/chef_client.rb.tmpl b/templates/chef_client.rb.tmpl new file mode 100644 index 00000000..d69dedc0 --- /dev/null +++ b/templates/chef_client.rb.tmpl @@ -0,0 +1,12 @@ +log_level :info +log_location "/var/log/chef/client.log" +ssl_verify_mode :verify_none +validation_client_name "$validation_name" +validation_key "/etc/chef/validation.pem" +client_key "/etc/chef/client.pem" +chef_server_url "$server_url" +file_cache_path "/var/cache/chef" +file_backup_path "/var/backups/chef" +pid_file "/var/run/chef/client.pid" +Chef::Log::Formatter.show_time = true + |