5d8a863e03
- boo#926153: make sure /var/run/libvirt/lxc folder exists when starting the driver. da33a1ac-lxc-init-statedir.patch - Fix lxc-enter-namespace for 3.19+ kernels. open-ns-files-readonly.patch OBS-URL: https://build.opensuse.org/request/show/295136 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=451
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From da33a1ac1f6c0ae2ebe72bc385bbc7c407026956 Mon Sep 17 00:00:00 2001
|
|
From: Lubomir Rintel <lkundrak@v3.sk>
|
|
Date: Wed, 8 Apr 2015 19:16:52 +0200
|
|
Subject: [PATCH] lxc: create the required directories upon driver start
|
|
|
|
/var/run may reside on a tmpfs and we fail to create the PID file if
|
|
/var/run/lxc does not exist.
|
|
|
|
Since commit 0a8addc1, the lxc driver's state directory isn't
|
|
automatically created before starting a domain. Now, the lxc driver
|
|
makes sure the state directory exists when it initializes.
|
|
|
|
Signed-off-by: Lubomir Rintel <lkundrak@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.4
|
|
|