]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: s/life-cycle/lifecycle/g
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 6 Nov 2023 13:52:01 +0000 (14:52 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 6 Nov 2023 19:16:34 +0000 (20:16 +0100)
NEWS
catalog/systemd.catalog.in
docs/FILE_DESCRIPTOR_STORE.md
src/shared/varlink-idl.c

diff --git a/NEWS b/NEWS
index dd68a0447982f9c77d5ce9acf6661aaff25db2b0..0e8313f40aee458f6909bb8dd500fc616e5cae15 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -712,9 +712,9 @@ CHANGES WITH 254:
           store enabled.
 
         * A new service option FileDescriptorStorePreserve= has been added that
-          allows tuning the life-cycle of the per-service file descriptor
-          store. If set to "yes", the entries in the fd store are retained even
-          after the service has been fully stopped.
+          allows tuning the lifecycle of the per-service file descriptor store.
+          If set to "yes", the entries in the fd store are retained even after
+          the service has been fully stopped.
 
         * The "systemctl clean" command may now be used to clear the fdstore of
           a service.
index 37b59adbdde547bbf50a55b0aaee8b182d28b899..8591a654aa5b6ebac7aa1181437355cff3a2dde3 100644 (file)
@@ -741,7 +741,7 @@ compatibility.
 Note that these automatically generated compatibility unit files cannot replace
 native unit files as they generally slow down the system (by creating
 unnecessary, additional synchronization points), are less robust (as SysV services
-cannot properly be life-cycle tracked or automatically restarted) and less
+cannot properly be lifecycle tracked or automatically restarted) and less
 secure (as no sandboxing restrictions can be enforced).
 
 Compatibility support for System V services in systemd is deprecated. Please
index 7921bf4fc8890207a555b11bdaa09ff662d7887d..206dda7038e1fea9c69e298b498733b52612a325 100644 (file)
@@ -100,7 +100,7 @@ general principle of guaranteeing a pristine execution environment, a pristine
 security context, and a pristine resource management context for freshly
 started services, without uncontrolled "leftovers" from previous runs. For
 example: leaving processes from previous runs generally negatively affects
-life-cycle management (i.e. `KillMode=none` must be set), which disables large
+lifecycle management (i.e. `KillMode=none` must be set), which disables large
 parts of the service managers state tracking, resource management (as resource
 counters cannot start at zero during service activation anymore, since the old
 processes remaining skew them), security policies (as processes with possibly
index f871c8e632b5bbdd92489afb8eb7cc25b412c2ef..655324c6c37101a148751ded438198782eb29481 100644 (file)
@@ -379,7 +379,7 @@ VarlinkInterface* varlink_interface_free(VarlinkInterface *interface) {
                 return NULL;
 
         /* So here's the thing: in most cases we want that users of this define their interface descriptions
-         * in C code, and hence the definitions are constant and immutable during the life-cycle of the
+         * in C code, and hence the definitions are constant and immutable during the lifecycle of the
          * system. Because of that we define all structs with const* pointers. It makes it very nice and
          * straight-forward to populate these structs with literal C strings. However, in some not so common
          * cases we also want to allocate these structures dynamically on the heap, when parsing interface