diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-07-14 12:20:29 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-07-20 14:53:15 +0200 |
commit | 8d36b53a2d08966a3025bd24e51c154be375a61f (patch) | |
tree | 2d583a8d8dcb25735654500816f8676b8f665a91 /units | |
parent | 9ce93478809de9a421b4a710c7c9de55ecf15187 (diff) |
units: fix TasksMax=16384 for systemd-nspawn@.service
When a container scope is allocated via machined it gets 16K set already since
cf7d1a30e44bf380027a2e73f9bf13f423a33cc1. Make sure when a container is run as
system service it gets the same values.
Diffstat (limited to 'units')
-rw-r--r-- | units/systemd-nspawn@.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/units/systemd-nspawn@.service.in b/units/systemd-nspawn@.service.in index ea28941507..eb318b1faf 100644 --- a/units/systemd-nspawn@.service.in +++ b/units/systemd-nspawn@.service.in @@ -20,7 +20,7 @@ RestartForceExitStatus=133 SuccessExitStatus=133 Slice=machine.slice Delegate=yes -TasksMax=8192 +TasksMax=16384 # Enforce a strict device policy, similar to the one nspawn configures # when it allocates its own scope unit. Make sure to keep these |