mirror of
https://github.com/apple/container.git
synced 2026-08-28 03:16:29 +00:00
SandboxService: Turn off RunAtLoad for the default plugin (#649)
For the default Linux runtime plugin we shouldn't have RunAtLoad on as it causes the process to be spawned the second we register it with launchd. This means that for a `container create` we'll have the runtime plugin process running afterwards. We already register a mach service for the plugin so on the first rpc it will spawn the process anyways which is plenty.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
"author": "Apple",
|
||||
"servicesConfig" : {
|
||||
"loadAtBoot" : false,
|
||||
"runAtLoad" : true,
|
||||
"runAtLoad" : false,
|
||||
"services" : [
|
||||
{
|
||||
"type" : "runtime"
|
||||
|
||||
Reference in New Issue
Block a user