1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-11 20:58:27 +03:00
This commit is contained in:
ver4a 2025-01-27 19:20:44 +01:00 committed by Yu Watanabe
parent 935e1d64e8
commit 1352eb059f
3 changed files with 3 additions and 3 deletions

View File

@ -321,7 +321,7 @@
<listitem><para>Bind mounts a file or directory from the host into the specified container. The first path
argument is the source file or directory on the host, the second path argument is the destination file or
directory in the container. When the latter is omitted, the destination path in the container is the same as
the source path on the host. When combined with the <option>--read-only</option> switch, a ready-only bind
the source path on the host. When combined with the <option>--read-only</option> switch, a read-only bind
mount is created. When combined with the <option>--mkdir</option> switch, the destination path is first created
before the mount is applied. Note that this option is currently only supported for
<citerefentry><refentrytitle>systemd-nspawn</refentrytitle><manvolnum>1</manvolnum></citerefentry> containers,

View File

@ -698,7 +698,7 @@ Jan 12 10:46:45 example.com bluetoothd[8900]: gatt-time-server: Input/output err
namespace. The first path argument is the source file or directory on the host, the second path
argument is the destination file or directory in the unit's mount namespace. When the latter is
omitted, the destination path in the unit's mount namespace is the same as the source path on the
host. When combined with the <option>--read-only</option> switch, a ready-only bind mount is
host. When combined with the <option>--read-only</option> switch, a read-only bind mount is
created. When combined with the <option>--mkdir</option> switch, the destination path is first
created before the mount is applied.</para>

View File

@ -363,7 +363,7 @@ read_only:
if (!is_toplevel) {
_cleanup_free_ char *name = NULL;
/* When we hit a ready-only subtree we simply skip it, but log about it. */
/* When we hit a read-only subtree we simply skip it, but log about it. */
(void) fd_get_path(fd, &name);
log_debug("Skipping read-only file or directory %s.", strna(name));
r = changed;