diff options
| author | Zheng Ruoqin <zhengrq.fnst@fujitsu.com> | 2026-03-26 17:08:49 +0800 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-03-26 07:43:17 -0700 |
| commit | 8028f542e4565030dc5782a710815d48b3420d75 (patch) | |
| tree | 51a669f11c609c318d7c8cdb1cd9477ba76b333f /meta-oe | |
| parent | b5bb24b356d8200e2f4b088bc052eb668502ce33 (diff) | |
| download | meta-openembedded-8028f542e4565030dc5782a710815d48b3420d75.tar.gz | |
openct: Fix openct.service warning
Fix following system unsafe warning
/usr/lib/systemd/system/openct.service:10: Unit uses KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update the service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-oe')
| -rw-r--r-- | meta-oe/recipes-support/openct/openct/openct.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/openct/openct/openct.service b/meta-oe/recipes-support/openct/openct/openct.service index c9ec497fa5..57de8c0a88 100644 --- a/meta-oe/recipes-support/openct/openct/openct.service +++ b/meta-oe/recipes-support/openct/openct/openct.service | |||
| @@ -7,7 +7,7 @@ EnvironmentFile=-/etc/sysconfig/openct | |||
| 7 | ExecStart=/usr/sbin/openct-control $OPENCT_OPTIONS init | 7 | ExecStart=/usr/sbin/openct-control $OPENCT_OPTIONS init |
| 8 | ExecStop=/usr/sbin/openct-control $OPENCT_OPTIONS shutdown | 8 | ExecStop=/usr/sbin/openct-control $OPENCT_OPTIONS shutdown |
| 9 | RemainAfterExit=yes | 9 | RemainAfterExit=yes |
| 10 | KillMode=none | 10 | KillMode=mixed |
| 11 | 11 | ||
| 12 | [Install] | 12 | [Install] |
| 13 | WantedBy=multi-user.target | 13 | WantedBy=multi-user.target |
