Create a `podman image` Command instance prepared to operate on our alternative root.
(&self)
| 217 | /// Create a `podman image` Command instance prepared to operate on our alternative |
| 218 | /// root. |
| 219 | pub(crate) fn new_image_cmd(&self) -> Result<Command> { |
| 220 | let mut r = new_podman_cmd_in(&self.sysroot, &self.storage_root, &self.run)?; |
| 221 | // We want to limit things to only manipulating images by default. |
| 222 | r.arg("image"); |
| 223 | Ok(r) |
| 224 | } |
| 225 | |
| 226 | fn init_globals() -> Result<()> { |
| 227 | // Ensure our global storage alias dir exists |
no test coverage detected