diff --git a/NEWS b/NEWS index 51b067b239a..099779f5ee1 100644 --- a/NEWS +++ b/NEWS @@ -14075,7 +14075,7 @@ CHANGES WITH 218: or are not older than the specified time. * A new, native PPPoE library has been added to sd-network, - systemd's library of light-weight networking protocols. This + systemd's library of lightweight networking protocols. This library will be used in a future version of networkd to enable PPPoE communication without an external pppd daemon. @@ -14922,7 +14922,7 @@ CHANGES WITH 214: have been added. When enabled, they will make the user data (such as /home) inaccessible or read-only and the system (such as /usr) read-only, for specific services. This allows - very light-weight per-service sandboxing to avoid + very lightweight per-service sandboxing to avoid modifications of user data or system files from services. These two new switches have been enabled for all of systemd's long-running services, where appropriate. @@ -15631,7 +15631,7 @@ CHANGES WITH 209: activation files automatically into native systemd .busname and .service units. - * sd-bus: add a light-weight vtable implementation that allows + * sd-bus: add a lightweight vtable implementation that allows defining objects on the bus with a simple static const vtable array of its methods, signals and properties. diff --git a/docs/THE_CASE_FOR_THE_USR_MERGE.md b/docs/THE_CASE_FOR_THE_USR_MERGE.md index c603e143e4d..30901eb7acd 100644 --- a/docs/THE_CASE_FOR_THE_USR_MERGE.md +++ b/docs/THE_CASE_FOR_THE_USR_MERGE.md @@ -80,7 +80,7 @@ _With all vendor-supplied OS resources in a single directory /usr they may be sh **Myth #4**: The /usr merge’s only purpose is to look pretty, and has no other benefits -**Fact**: The /usr merge makes sharing the vendor-supplied OS resources between a host and networked clients as well as a host and local light-weight containers easier and atomic. Snapshotting the OS becomes a viable option. The /usr merge also allows making the entire vendor-supplied OS resources read-only for increased security and robustness. +**Fact**: The /usr merge makes sharing the vendor-supplied OS resources between a host and networked clients as well as a host and local lightweight containers easier and atomic. Snapshotting the OS becomes a viable option. The /usr merge also allows making the entire vendor-supplied OS resources read-only for increased security and robustness. **Myth #5**: Adopting the /usr merge in your distribution means additional work for your distribution's package maintainers diff --git a/man/org.freedesktop.machine1.xml b/man/org.freedesktop.machine1.xml index aac30d25d77..602c04bf4fc 100644 --- a/man/org.freedesktop.machine1.xml +++ b/man/org.freedesktop.machine1.xml @@ -651,7 +651,7 @@ node /org/freedesktop/machine1/machine/rawhide { Leader is the PID of the leader process of the machine. Class is the class of the machine and is either the string "vm" (for real VMs - based on virtualized hardware) or "container" (for light-weight userspace virtualization sharing the + based on virtualized hardware) or "container" (for lightweight userspace virtualization sharing the same kernel as the host). RootDirectory is the root directory of the container if it is known and diff --git a/man/systemd-nspawn.xml b/man/systemd-nspawn.xml index 4feedd86445..c780abf96a2 100644 --- a/man/systemd-nspawn.xml +++ b/man/systemd-nspawn.xml @@ -21,7 +21,7 @@ systemd-nspawn - Spawn a command or OS in a light-weight container + Spawn a command or OS in a lightweight container @@ -43,7 +43,7 @@ Description - systemd-nspawn may be used to run a command or OS in a light-weight namespace + systemd-nspawn may be used to run a command or OS in a lightweight namespace container. In many ways it is similar to chroot1, but more powerful since it virtualizes the file system hierarchy, as well as the process tree, the various IPC subsystems, and diff --git a/man/systemd.unit.xml b/man/systemd.unit.xml index dfc9f6f9940..73b28a47d85 100644 --- a/man/systemd.unit.xml +++ b/man/systemd.unit.xml @@ -601,7 +601,7 @@ systemd (and other UIs) as a user-visible label for the unit, so this string should identify the unit rather than describe it, despite the name. This string also shouldn't just repeat the unit name. Apache2 Web Server is a good example. Bad examples are - high-performance light-weight HTTP server (too generic) or + high-performance lightweight HTTP server (too generic) or Apache2 (meaningless for people who do not know Apache, duplicates the unit name). systemd may use this string as a noun in status messages (Starting description..., Started diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 70ce4e6d796..4d16954212f 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -320,7 +320,7 @@ static int help(void) { return log_oom(); printf("%1$s [OPTIONS...] [PATH] [ARGUMENTS...]\n\n" - "%5$sSpawn a command or OS in a light-weight container.%6$s\n\n" + "%5$sSpawn a command or OS in a lightweight container.%6$s\n\n" " -h --help Show this help\n" " --version Print version string\n" " -q --quiet Do not show status information\n" diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 421e465d71b..c4e032d8d76 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -2007,7 +2007,7 @@ static int create_directory_or_subvolume( if (r == 0) /* Don't create a subvolume unless the root directory is one, too. We do this under * the assumption that if the root directory is just a plain directory (i.e. very - * light-weight), we shouldn't try to split it up into subvolumes (i.e. more + * lightweight), we shouldn't try to split it up into subvolumes (i.e. more * heavy-weight). Thus, chroot() environments and suchlike will get a full brtfs * subvolume set up below their tree only if they specifically set up a btrfs * subvolume for the root dir too. */