mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-28 16:45:26 +00:00
Fix start of containers with custom root filesystem
A prefix change to unmount the SELinux filesystem broke starting
of LXC containers with a custom root filesystem
(cherry picked from commit 1532bd498a
)
This commit is contained in:
parent
b53782f102
commit
6b2a4e2514
@ -1191,6 +1191,8 @@ static int lxcContainerGetSubtree(const char *prefix,
|
||||
char **mounts = NULL;
|
||||
size_t nmounts = 0;
|
||||
|
||||
VIR_DEBUG("prefix=%s", prefix);
|
||||
|
||||
*mountsret = NULL;
|
||||
*nmountsret = 0;
|
||||
|
||||
@ -1528,7 +1530,8 @@ static int lxcContainerSetupPivotRoot(virDomainDefPtr vmDef,
|
||||
/* Some versions of Linux kernel don't let you overmount
|
||||
* the selinux filesystem, so make sure we kill it first
|
||||
*/
|
||||
if (lxcContainerUnmountSubtree(SELINUX_MOUNT, false) < 0)
|
||||
if (STREQ(root->src, "/") &&
|
||||
lxcContainerUnmountSubtree(SELINUX_MOUNT, false) < 0)
|
||||
goto cleanup;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user