pub const ENV_RLIMITS: &str = "MSB_RLIMITS";Expand description
Environment variable carrying sandbox-wide resource limits.
Format: resource=limit[:hard][;resource=limit[:hard];...]
resource— lowercase rlimit name such asnofileornproclimit— soft limithard— hard limit (optional; if omitted, uses the soft limit)
Examples:
MSB_RLIMITS=nofile=65535MSB_RLIMITS=nofile=65535:65535;nproc=4096:4096
agentd applies these during PID 1 startup so every later guest process inherits the raised baseline instead of having to opt into per-exec rlimits.