chef-zero 3.1 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/chef_zero/chef_data/default_creator.rb +1 -1
- data/lib/chef_zero/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3698741be5962418f4c8608b65e0d81016b83ee
|
|
4
|
+
data.tar.gz: 358bd5cbef06d93ce4cd7e493aaa5e3761d522d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ea5173c1be35f69f3b38b46a119f9fe70117d6bfc9b74acca1912c13b40a6ad033caf1b0523326a078ff427553f8b6cf829badc3dee45e83990feca8186e116
|
|
7
|
+
data.tar.gz: 4fbb4286251ab707f427fce4b0c42e792c7182b0c61aa0fc7f6976aa7637a38eb036c282dd41b58560dc6c1b16a511287eb775e90482a66643f07a757c203e0b
|
|
@@ -268,7 +268,7 @@ module ChefZero
|
|
|
268
268
|
def get_org_acl_default(path)
|
|
269
269
|
object_path = AclPath.get_object_path(path)
|
|
270
270
|
# The actual things containers correspond to don't have to exist, as long as the container does
|
|
271
|
-
return nil if
|
|
271
|
+
return nil if !data_exists?(object_path)
|
|
272
272
|
basic_acl =
|
|
273
273
|
case path[3..-1].join('/')
|
|
274
274
|
when 'root', 'containers/containers', 'containers/groups'
|
data/lib/chef_zero/version.rb
CHANGED