mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
fix(runtime): debug should be respected
This commit is contained in:
parent
bc95ae491b
commit
089c9cbff9
@ -138,7 +138,10 @@ impl GuestLauncher {
|
||||
} else {
|
||||
None
|
||||
};
|
||||
let cmdline_options = ["console=hvc0", "quiet"];
|
||||
let mut cmdline_options = ["console=hvc0"].to_vec();
|
||||
if !request.debug {
|
||||
cmdline_options.push("quiet");
|
||||
}
|
||||
let cmdline = cmdline_options.join(" ");
|
||||
|
||||
let guest_mac_string = container_mac.to_string().replace('-', ":");
|
||||
|
Loading…
Reference in New Issue
Block a user