From 30b11e54abdf520e8029163c4fcb91945f1d616b Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Graber?= Date: Fri, 9 May 2025 21:18:42 -0400 Subject: [PATCH] conf: Add support for "move" mount flag MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/lxc/conf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 14fa041b7..a01b0852d 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -148,6 +148,7 @@ static struct mount_opt mount_opt[] = { { "suid", 1, false, MOUNT_ATTR_NOSUID, MS_NOSUID }, { "bind", 0, false, 0, MS_BIND }, + { "move", 0, false, 0, MS_MOVE }, { "defaults", 0, false, 0, 0 }, { "rbind", 0, true, 0, MS_BIND | MS_REC }, -- 2.47.2