Skip to content

Commit

Permalink
Update rust/src/client.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Walters <[email protected]>
  • Loading branch information
jmarrero and cgwalters authored Dec 17, 2021
1 parent 2fe22a4 commit 79374b1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rust/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,11 @@ pub(crate) fn client_render_download_progress(
}
}

/// Install packages live into the running root filesystem.
/// This is only intended for use as part of a container builds.
/// For now, we fork/exec microdnf because this is exactly what its
/// main use case is, but in the future we may change the rpm-ostree code
/// to handle this more directly.
pub(crate) fn microdnf_install(args: Vec<String>) -> Result<()> {
let mut microdnf_command = "microdnf";
let alt_microdnf_location = "/usr/lib/rpm-ostree/microdnf";
Expand Down

0 comments on commit 79374b1

Please sign in to comment.