diff options
author | Mike Yuan <me@yhndnzj.com> | 2024-09-04 15:06:39 +0200 |
---|---|---|
committer | Mike Yuan <me@yhndnzj.com> | 2024-09-04 21:44:25 +0200 |
commit | 7a9f0125bbd7ccf7bb491c5453d4ea997feedad5 (patch) | |
tree | 229e1a9f0a44905d347c2cb39db5a6d48739e4c6 /src/portable | |
parent | core/namespace: add comment to explain the non-obvious assumption on /run/sys... (diff) | |
download | systemd-7a9f0125bbd7ccf7bb491c5453d4ea997feedad5.tar.xz systemd-7a9f0125bbd7ccf7bb491c5453d4ea997feedad5.zip |
core: rename BindJournalSockets= to BindLogSockets=
Addresses https://github.com/systemd/systemd/pull/32487#issuecomment-2328465309
Diffstat (limited to 'src/portable')
-rw-r--r-- | src/portable/profile/default/service.conf | 2 | ||||
-rw-r--r-- | src/portable/profile/nonetwork/service.conf | 2 | ||||
-rw-r--r-- | src/portable/profile/strict/service.conf | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/portable/profile/default/service.conf b/src/portable/profile/default/service.conf index 07f985cefa..35dfd778f2 100644 --- a/src/portable/profile/default/service.conf +++ b/src/portable/profile/default/service.conf @@ -2,7 +2,7 @@ [Service] MountAPIVFS=yes -BindJournalSockets=yes +BindLogSockets=yes BindReadOnlyPaths=/etc/machine-id BindReadOnlyPaths=-/etc/resolv.conf BindReadOnlyPaths=/run/dbus/system_bus_socket diff --git a/src/portable/profile/nonetwork/service.conf b/src/portable/profile/nonetwork/service.conf index ee7aa2d525..e8d2a9bb1a 100644 --- a/src/portable/profile/nonetwork/service.conf +++ b/src/portable/profile/nonetwork/service.conf @@ -2,7 +2,7 @@ [Service] MountAPIVFS=yes -BindJournalSockets=yes +BindLogSockets=yes BindReadOnlyPaths=/etc/machine-id BindReadOnlyPaths=/run/dbus/system_bus_socket DynamicUser=yes diff --git a/src/portable/profile/strict/service.conf b/src/portable/profile/strict/service.conf index ed14387b5d..aa5bcfbb08 100644 --- a/src/portable/profile/strict/service.conf +++ b/src/portable/profile/strict/service.conf @@ -2,7 +2,7 @@ [Service] MountAPIVFS=yes -BindJournalSockets=yes +BindLogSockets=yes BindReadOnlyPaths=/etc/machine-id DynamicUser=yes RemoveIPC=yes |