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 f4b01ab commit a6f58d5Copy full SHA for a6f58d5
crates/lib/src/reboot.rs
@@ -14,7 +14,13 @@ pub(crate) fn reboot() -> anyhow::Result<()> {
14
let _ = std::io::stdout().flush();
15
let _ = std::io::stderr().flush();
16
Task::new("Rebooting system", "systemd-run")
17
- .args(["--", "systemctl", "reboot", "--message=Initiated by bootc"])
+ .args([
18
+ "--quiet",
19
+ "--",
20
+ "systemctl",
21
+ "reboot",
22
+ "--message=Initiated by bootc",
23
+ ])
24
.run()?;
25
tracing::debug!("Initiated reboot, sleeping forever...");
26
loop {
0 commit comments