Skip to content

Commit 6cfb4be

Browse files
cli/install: Add composefs option to InstallToDiskOpts
Done to facilitate the installation of a composefs repository to disk Signed-off-by: Pragyan Poudyal <[email protected]>
1 parent 8f1e871 commit 6cfb4be

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

Cargo.lock

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/install.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,9 @@ pub(crate) struct InstallToDiskOpts {
241241
#[clap(long)]
242242
#[serde(default)]
243243
pub(crate) via_loopback: bool,
244+
245+
#[clap(long)]
246+
pub(crate) composefs: bool,
244247
}
245248

246249
#[derive(ValueEnum, Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize)]

ostree-ext/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ version = "0.15.3"
1212
# Note that we re-export the oci-spec types
1313
# that are exported by this crate, so when bumping
1414
# semver here you must also bump our semver.
15-
containers-image-proxy = "0.7.0"
15+
containers-image-proxy = "0.7.1"
1616
# We re-export this library too.
1717
ostree = { features = ["v2025_1"], version = "0.20.0" }
1818

1919
# Private dependencies
2020
anyhow = { workspace = true }
2121
bootc-utils = { path = "../utils" }
2222
camino = { workspace = true, features = ["serde1"] }
23-
composefs = { git = "https://github.com/containers/composefs-rs", rev = "821eeae93e48f1ee381c49b8cd4d22fda92d27a2" }
23+
composefs = { git = "https://github.com/containers/composefs-rs", rev = "b1bd9c1d253c9b15bbf8e04068ad96edd974ccd0" }
2424
chrono = { workspace = true }
2525
olpc-cjson = "0.1.1"
2626
clap = { workspace = true, features = ["derive","cargo"] }

0 commit comments

Comments
 (0)