We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9694139 commit bf4a653Copy full SHA for bf4a653
lib/runner.nix
@@ -40,11 +40,12 @@ let
40
binScripts = microvmConfig.binScripts // {
41
microvm-run = ''
42
set -eou pipefail
43
+ unset EXTRA_ARGS
44
${preStart}
45
${createVolumesScript vmHostPackages microvmConfig.volumes}
46
${lib.optionalString (hypervisorConfig.requiresMacvtapAsFds or false) openMacvtapFds}
47
- exec ${execArg} ${command}
48
+ exec ${execArg} ${command} ''${EXTRA_ARGS:-}
49
'';
50
} // lib.optionalAttrs canShutdown {
51
microvm-shutdown = shutdownCommand;
0 commit comments