mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Bugfix Additional Disks Storage File Ownership
For additional disk image created by `lib/vagrant-libvirt/action/create_domain.rb`, it is now incorrectly hard-coded with `group: storage_uid(env)`, so even QEMU process is running with `root:libvirt` but file is still owned by `root:root`. Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
This commit is contained in:
committed by
Darragh Bailey
parent
4c2e59bc3f
commit
70c4136836
@@ -198,7 +198,7 @@ module VagrantPlugins
|
||||
path: disk[:absolute_path],
|
||||
capacity: disk[:size],
|
||||
owner: storage_uid(env),
|
||||
group: storage_uid(env),
|
||||
group: storage_gid(env),
|
||||
#:allocation => ?,
|
||||
pool_name: disk_pool_name
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user