Files
topgrade/src/steps/toolbx.rs
2025-08-06 15:21:51 +02:00

67 lines
1.9 KiB
Rust

use color_eyre::eyre::Result;
use crate::command::CommandExt;
use crate::step::Step;
use crate::terminal::print_separator;
use crate::{execution_context::ExecutionContext, utils::require};
use std::path::Path;
use std::{path::PathBuf, process::Command};
use tracing::debug;
fn list_toolboxes(toolbx: &Path) -> Result<Vec<String>> {
let output = Command::new(toolbx)
.args(["list", "--containers"])
.output_checked_utf8()?;
let proc: Vec<String> = output
.stdout
.lines()
// Skip the first line since that contains only status information
.skip(1)
.map(|line| match line.split_whitespace().nth(1) {
Some(word) => word.to_string(),
None => String::from(""),
})
.filter(|x| !x.is_empty())
.collect();
Ok(proc)
}
pub fn run_toolbx(ctx: &ExecutionContext) -> Result<()> {
let toolbx = require("toolbox")?;
print_separator("Toolbx");
let toolboxes = list_toolboxes(&toolbx)?;
debug!("Toolboxes to inspect: {:?}", toolboxes);
let mut topgrade_path = PathBuf::from("/run/host");
// Path of the running Topgrade executable
// Skip 1 to eliminate the path root, otherwise push overwrites the path
topgrade_path.push(std::env::current_exe()?.components().skip(1).collect::<PathBuf>());
let topgrade_path = topgrade_path.to_str().unwrap();
for tb in toolboxes.iter() {
let topgrade_prefix = format!("TOPGRADE_PREFIX='Toolbx {tb}'");
let mut args = vec![
"run",
"-c",
tb,
"env",
&topgrade_prefix,
topgrade_path,
"--only",
"system",
"--no-self-update",
"--skip-notify",
];
if ctx.config().yes(Step::Toolbx) {
args.push("--yes");
}
ctx.execute(&toolbx).args(&args).status_checked()?;
}
Ok(())
}