These disk devices are created for container,
the owner should be the root user of container.
Signed-off-by: Gao feng <gaofeng(a)cn.fujitsu.com>
---
src/lxc/lxc_controller.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/lxc/lxc_controller.c b/src/lxc/lxc_controller.c
index e9d2848..38b632e 100644
--- a/src/lxc/lxc_controller.c
+++ b/src/lxc/lxc_controller.c
@@ -1369,6 +1369,9 @@ static int virLXCControllerSetupDisk(virLXCControllerPtr ctrl,
goto cleanup;
}
+ if (virLXCControllerChown(ctrl, dst) < 0)
+ goto cleanup;
+
/* Labelling normally operates on src, but we need
* to actally label the dst here, so hack the config */
def->src = dst;
--
1.8.3.1