summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs/knife.rb
diff options
context:
space:
mode:
authorjkeiser <jkeiser@opscode.com>2013-03-13 17:07:31 -0700
committerJohn Keiser <jkeiser@opscode.com>2013-06-07 13:12:28 -0700
commitc2005955b9630ae0be4a2a1269523e5b238ff5da (patch)
tree8aa367032738d3f4f0d8c1b9f87e87cb3c070b1e /lib/chef/chef_fs/knife.rb
parent09144c1e062e3f95b27160a2c58ade441b6ea4ab (diff)
downloadchef-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.rb4
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