remove redundant setting of default volume/backingStore mode

According to the docs, for volumes and backingStores: "The mode defaults to
0600 when not provided.  https://libvirt.org/formatstorage.html

Removing this setting here allows the pool configuration to set the default
mode.
This commit is contained in:
Hans-Christoph Steiner
2018-10-23 11:48:30 +02:00
parent 5e77446297
commit 8b712b7715

View File

@@ -51,7 +51,6 @@ module VagrantPlugins
xml.permissions do
xml.owner storage_uid(env)
xml.group storage_gid(env)
xml.mode '0600'
xml.label 'virt_image_t'
end
end
@@ -61,7 +60,6 @@ module VagrantPlugins
xml.permissions do
xml.owner storage_uid(env)
xml.group storage_gid(env)
xml.mode '0600'
xml.label 'virt_image_t'
end
end