diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-15 17:40:55 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-15 17:40:55 -0700 |
commit | 19f5aa0f4bb449a826a0e6a96f318dba4d814443 (patch) | |
tree | b3555898429cf75223b39526c66a76e7a27ef268 /templates/chef_client.rb.tmpl | |
parent | 09f6384ac5694be18bef4872c9f19b9601b48f8b (diff) | |
download | vyos-cloud-init-19f5aa0f4bb449a826a0e6a96f318dba4d814443.tar.gz vyos-cloud-init-19f5aa0f4bb449a826a0e6a96f318dba4d814443.zip |
Renamed hosts to match the ubuntu distro.
Also converted all the other templates to tempita format instead of the more complicated (and more dependent on other packages) cheetah format.
Diffstat (limited to 'templates/chef_client.rb.tmpl')
-rw-r--r-- | templates/chef_client.rb.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/chef_client.rb.tmpl b/templates/chef_client.rb.tmpl index d3d9a922..35123ced 100644 --- a/templates/chef_client.rb.tmpl +++ b/templates/chef_client.rb.tmpl @@ -1,12 +1,12 @@ log_level :info log_location "/var/log/chef/client.log" ssl_verify_mode :verify_none -validation_client_name "$validation_name" +validation_client_name "{{validation_name}}" validation_key "/etc/chef/validation.pem" client_key "/etc/chef/client.pem" -chef_server_url "$server_url" -environment "$environment" -node_name "$node_name" +chef_server_url "{{server_url}}" +environment "{{environment}}" +node_name "{{node_name}}" json_attribs "/etc/chef/firstboot.json" file_cache_path "/var/cache/chef" file_backup_path "/var/backups/chef" |