Skip to content

Commit

Permalink
Merge pull request #257 from cgwalters/drop-touch-if-changed
Browse files Browse the repository at this point in the history
cli: Drop `upgrade --touch-if-changed`
  • Loading branch information
jeckersb committed Jan 12, 2024
2 parents fad73f2 + b92bdb8 commit ee086d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
6 changes: 0 additions & 6 deletions lib/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ pub(crate) struct UpgradeOpts {
#[clap(long)]
pub(crate) quiet: bool,

#[clap(long)]
pub(crate) touch_if_changed: Option<Utf8PathBuf>,

/// Check if an update is available without applying it.
///
/// This only downloads an updated manifest and image configuration (i.e. typically kilobyte-sized metadata)
Expand Down Expand Up @@ -376,9 +373,6 @@ async fn upgrade(opts: UpgradeOpts) -> Result<()> {
}
}
if changed {
if let Some(path) = opts.touch_if_changed {
std::fs::write(&path, "").with_context(|| format!("Writing {path}"))?;
}
if opts.apply {
crate::reboot::reboot()?;
}
Expand Down
14 changes: 6 additions & 8 deletions manpages-md/bootc-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ bootc-upgrade - Download and queue an updated container image to apply

# SYNOPSIS

**bootc-upgrade** \[**\--quiet**\] \[**\--touch-if-changed**\]
\[**\--check**\] \[**\--apply**\] \[**-h**\|**\--help**\]
\[**-V**\|**\--version**\]
**bootc-upgrade** \[**\--quiet**\] \[**\--check**\] \[**\--apply**\]
\[**-h**\|**\--help**\] \[**-V**\|**\--version**\]

# DESCRIPTION

Expand All @@ -31,13 +30,12 @@ outside of a \`bootc upgrade \--apply\` do \*not\* upgrade.

: Dont display progress

**\--touch-if-changed**=*TOUCH_IF_CHANGED*

:

**\--check**

: Check if an update is available without applying it
: Check if an update is available without applying it.

This only downloads an updated manifest and image configuration (i.e.
typically kilobyte-sized metadata) as opposed to the image layers.

**\--apply**

Expand Down

0 comments on commit ee086d0

Please sign in to comment.