Properly configure Chef solo when no roles path [GH-1665]

This commit is contained in:
Mitchell Hashimoto 2013-05-01 18:58:22 -07:00
parent 4c5262690e
commit 3052fd350f
2 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,8 @@ BUG FIXES:
- Ignore "guest not ready" errors when attempting to graceful halt and
carry on checks whether the halt succeeded. [GH-1679]
- Handle the case where a roles path for Chef solo isn't properly
defined. [GH-1665]
## 1.2.2 (April 23, 2013)

View File

@ -3,7 +3,9 @@ node_name "<%= node_name %>"
<% end %>
file_cache_path "<%= provisioning_path %>"
cookbook_path <%= cookbooks_path.inspect %>
<% if roles_path %>
role_path <%= roles_path.inspect %>
<% end %>
log_level <%= log_level.inspect %>
encrypted_data_bag_secret "<%= encrypted_data_bag_secret %>"