[libvirt] [PATCH v2] lxc: create the required directories upon driver start

Lubomir Rintel lkundrak at v3.sk
Wed Apr 8 17:16:52 UTC 2015


/var/run may reside on a tmpfs and we fail to create the PID file if
/var/run/lxc does not exist.

[cbosdonnat at suse.com: use cfg->stateDir instead of LXC_STATE_DIR]

Signed-off-by: Lubomir Rintel <lkundrak at v3.sk>
---
 src/lxc/lxc_driver.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/lxc/lxc_driver.c b/src/lxc/lxc_driver.c
index 245000d..8dfa686 100644
--- a/src/lxc/lxc_driver.c
+++ b/src/lxc/lxc_driver.c
@@ -1648,6 +1648,13 @@ static int lxcStateInitialize(bool privileged,
     if (!(caps = virLXCDriverGetCapabilities(lxc_driver, false)))
         goto cleanup;
 
+    if (virFileMakePath(cfg->stateDir) < 0) {
+        virReportSystemError(errno,
+                             _("Failed to mkdir %s"),
+                             cfg->stateDir);
+        goto cleanup;
+    }
+
     /* Get all the running persistent or transient configs first */
     if (virDomainObjListLoadAllConfigs(lxc_driver->domains,
                                        cfg->stateDir,
-- 
2.1.0




More information about the libvir-list mailing list