From: Stéphane Graber Date: Sat, 10 May 2025 01:18:42 +0000 (-0400) Subject: conf: Add support for "move" mount flag X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4550%2Fhead;p=thirdparty%2Flxc.git conf: Add support for "move" mount flag Signed-off-by: Stéphane Graber --- 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 },