mirror of
https://github.com/apple/container.git
synced 2026-07-21 17:01:34 +00:00
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.
16 lines
319 B
JSON
16 lines
319 B
JSON
{
|
|
"abstract" : "Linux container runtime plugin",
|
|
"version": "0.1",
|
|
"author": "Apple",
|
|
"servicesConfig" : {
|
|
"loadAtBoot" : false,
|
|
"runAtLoad" : false,
|
|
"services" : [
|
|
{
|
|
"type" : "runtime"
|
|
}
|
|
],
|
|
"defaultArguments": []
|
|
}
|
|
}
|