]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
nspawn: file system namespace -> mount namespace
authorFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 15 May 2023 12:05:15 +0000 (14:05 +0200)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 15 May 2023 12:05:15 +0000 (14:05 +0200)
src/nspawn/nspawn-oci.c

index e9de2574071e85f73ca563322270a97c043c8c61..e8bbb6db2ae567f9a125264f392368715e3a5cdd 100644 (file)
@@ -663,7 +663,7 @@ static int oci_namespaces(const char *name, JsonVariant *v, JsonDispatchFlags fl
 
         if (!FLAGS_SET(n, CLONE_NEWNS))
                 return json_log(v, flags, SYNTHETIC_ERRNO(EOPNOTSUPP),
-                                "Containers without file system namespace aren't supported.");
+                                "Containers without a mount namespace aren't supported.");
 
         s->private_network = FLAGS_SET(n, CLONE_NEWNET);
         s->userns_mode = FLAGS_SET(n, CLONE_NEWUSER) ? USER_NAMESPACE_FIXED : USER_NAMESPACE_NO;