diff options
author | jkeiser <jkeiser@opscode.com> | 2013-03-13 17:07:31 -0700 |
---|---|---|
committer | John Keiser <jkeiser@opscode.com> | 2013-06-07 13:12:28 -0700 |
commit | c2005955b9630ae0be4a2a1269523e5b238ff5da (patch) | |
tree | 8aa367032738d3f4f0d8c1b9f87e87cb3c070b1e /lib/chef/chef_fs/knife.rb | |
parent | 09144c1e062e3f95b27160a2c58ade441b6ea4ab (diff) | |
download | chef-c2005955b9630ae0be4a2a1269523e5b238ff5da.tar.gz |
Add container support to hosted chef
Diffstat (limited to 'lib/chef/chef_fs/knife.rb')
-rw-r--r-- | lib/chef/chef_fs/knife.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/chef_fs/knife.rb b/lib/chef/chef_fs/knife.rb index 30f1a8aa0a..2bdd97ded3 100644 --- a/lib/chef/chef_fs/knife.rb +++ b/lib/chef/chef_fs/knife.rb @@ -40,7 +40,7 @@ class Chef Chef::Config[:repo_mode] = config[:repo_mode] if config[:repo_mode] # --chef-repo-path overrides all other paths - path_variables = %w(client_path cookbook_path data_bag_path environment_path group_path node_path role_path user_path) + path_variables = %w(client_path cookbook_path container_path data_bag_path environment_path group_path node_path role_path user_path) if config[:chef_repo_path] Chef::Config[:chef_repo_path] = config[:chef_repo_path] path_variables.each do |variable_name| @@ -95,7 +95,7 @@ class Chef when 'everything' object_names = %w(clients cookbooks data_bags environments nodes roles users) when 'hosted_everything' - object_names = %w(clients cookbooks data_bags environments groups nodes roles) + object_names = %w(clients cookbooks containers data_bags environments groups nodes roles) else object_names = %w(cookbooks data_bags environments roles) end |