Method: Chef::ChefFS::FileSystem::ChefServer::DataBagDir#exists?
- Defined in:
- lib/chef/chef_fs/file_system/chef_server/data_bag_dir.rb
#exists? ⇒ Boolean
43 44 45 46 47 48 |
# File 'lib/chef/chef_fs/file_system/chef_server/data_bag_dir.rb', line 43 def exists? if @exists.nil? @exists = parent.children.any? { |child| child.name == name } end @exists end |