From: Frantisek Sumsal Date: Mon, 15 May 2023 12:05:15 +0000 (+0200) Subject: nspawn: file system namespace -> mount namespace X-Git-Tag: v254-rc1~464^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3426ec8efb7f075f71768e993dfe8c3c104b68ab;p=thirdparty%2Fsystemd.git nspawn: file system namespace -> mount namespace --- diff --git a/src/nspawn/nspawn-oci.c b/src/nspawn/nspawn-oci.c index e9de2574071..e8bbb6db2ae 100644 --- a/src/nspawn/nspawn-oci.c +++ b/src/nspawn/nspawn-oci.c @@ -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;