From 1352eb059f568cb1560eb9b28f12d96dc65013a2 Mon Sep 17 00:00:00 2001 From: ver4a Date: Mon, 27 Jan 2025 19:20:44 +0100 Subject: [PATCH] Fix typo --- man/machinectl.xml | 2 +- man/systemctl.xml | 2 +- src/shared/shift-uid.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/man/machinectl.xml b/man/machinectl.xml index a47269b24e9..7e6161b31cb 100644 --- a/man/machinectl.xml +++ b/man/machinectl.xml @@ -321,7 +321,7 @@ 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 switch, a ready-only bind + the source path on the host. When combined with the switch, a read-only bind mount is created. When combined with the switch, the destination path is first created before the mount is applied. Note that this option is currently only supported for systemd-nspawn1 containers, diff --git a/man/systemctl.xml b/man/systemctl.xml index 770f0e0c041..1f70af60a64 100644 --- a/man/systemctl.xml +++ b/man/systemctl.xml @@ -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 switch, a ready-only bind mount is + host. When combined with the switch, a read-only bind mount is created. When combined with the switch, the destination path is first created before the mount is applied. diff --git a/src/shared/shift-uid.c b/src/shared/shift-uid.c index 435ba46c8e0..d8e7b493c53 100644 --- a/src/shared/shift-uid.c +++ b/src/shared/shift-uid.c @@ -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;