summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs/chef_fs_data_store.rb
diff options
context:
space:
mode:
authorJohn Keiser <jkeiser@opscode.com>2014-09-05 17:12:47 -0700
committerJohn Keiser <jkeiser@opscode.com>2014-09-05 17:12:47 -0700
commitc8b1e30a8b558c29a1ce1cc6a5a1e5de56534d22 (patch)
tree36e3eb5bcc258adfad66daef145180e93702bed4 /lib/chef/chef_fs/chef_fs_data_store.rb
parentad0bfd815f24938acaf9d4627c31dee8a3642583 (diff)
downloadchef-c8b1e30a8b558c29a1ce1cc6a5a1e5de56534d22.tar.gz
Make Chef::Config.versioned_cookbooks configurable by consumersjk/versioned_cookbooks_config
without having to modify Chef::Config itself
Diffstat (limited to 'lib/chef/chef_fs/chef_fs_data_store.rb')
-rw-r--r--lib/chef/chef_fs/chef_fs_data_store.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/chef/chef_fs/chef_fs_data_store.rb b/lib/chef/chef_fs/chef_fs_data_store.rb
index b2435d8201..09a66a9ab2 100644
--- a/lib/chef/chef_fs/chef_fs_data_store.rb
+++ b/lib/chef/chef_fs/chef_fs_data_store.rb
@@ -103,7 +103,7 @@ class Chef
value.each do |file|
if file.is_a?(Hash) && file.has_key?('checksum')
relative = ['file_store', 'repo', 'cookbooks']
- if Chef::Config.versioned_cookbooks
+ if chef_fs.versioned_cookbooks
relative << "#{path[1]}-#{path[2]}"
else
relative << path[1]
@@ -190,7 +190,7 @@ class Chef
elsif path[0] == 'cookbooks' && path.length == 1
with_entry(path) do |entry|
begin
- if Chef::Config.versioned_cookbooks
+ if chef_fs.versioned_cookbooks
# /cookbooks/name-version -> /cookbooks/name
entry.children.map { |child| split_name_version(child.name)[0] }.uniq
else
@@ -203,7 +203,7 @@ class Chef
end
elsif path[0] == 'cookbooks' && path.length == 2
- if Chef::Config.versioned_cookbooks
+ if chef_fs.versioned_cookbooks
result = with_entry([ 'cookbooks' ]) do |entry|
# list /cookbooks/name = filter /cookbooks/name-version down to name
entry.children.map { |child| split_name_version(child.name) }.
@@ -261,7 +261,7 @@ class Chef
end
def write_cookbook(path, data, *options)
- if Chef::Config.versioned_cookbooks
+ if chef_fs.versioned_cookbooks
cookbook_path = File.join('cookbooks', "#{path[1]}-#{path[2]}")
else
cookbook_path = File.join('cookbooks', path[1])
@@ -318,7 +318,7 @@ class Chef
elsif path[0] == 'cookbooks'
if path.length == 2
raise ChefZero::DataStore::DataNotFoundError.new(path)
- elsif Chef::Config.versioned_cookbooks
+ elsif chef_fs.versioned_cookbooks
if path.length >= 3
# cookbooks/name/version -> cookbooks/name-version
path = [ path[0], "#{path[1]}-#{path[2]}" ] + path[3..-1]
@@ -351,7 +351,7 @@ class Chef
end
elsif path[0] == 'cookbooks'
- if Chef::Config.versioned_cookbooks
+ if chef_fs.versioned_cookbooks
# cookbooks/name-version/... -> cookbooks/name/version/...
if path.length >= 2
name, version = split_name_version(path[1])