From 4f41a8e5b2291595374ecc02b43ec4441eb9c4e0 Mon Sep 17 00:00:00 2001 From: Gao feng Date: Tue, 16 Jul 2013 10:00:03 +0800 Subject: [PATCH] LXC: Change the owner of live attached disk device The owner of this disk device should be the root user of container. Signed-off-by: Gao feng --- src/lxc/lxc_driver.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lxc/lxc_driver.c b/src/lxc/lxc_driver.c index 1279edfaa6..bd921351a2 100644 --- a/src/lxc/lxc_driver.c +++ b/src/lxc/lxc_driver.c @@ -3258,6 +3258,10 @@ lxcDomainAttachDeviceDiskLive(virLXCDriverPtr driver, dst); goto cleanup; } + + if (lxcContainerChown(vm->def, dst) < 0) + goto cleanup; + created = true; /* Labelling normally operates on src, but we need -- GitLab