Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "beadm"
version = "0.2.2-dev"
version = "0.2.3-dev"
edition = "2024"

[dependencies]
Expand Down
2 changes: 2 additions & 0 deletions doc/beadm.8.scd
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ beadm - Boot Environment Administration
*beadm* *list* [*-adsH*] [*-k* _property_ | *-K* _property_] [_name_] ++
*beadm* *mount* [*-s* _mode_] _name_ [_mountpoint_] ++
*beadm* *unmount* [*-f*] _name_ ++
*beadm* *nmount* [*-f*] _name_ ++
*beadm* *rename* _name_ _new-name_ ++
*beadm* *describe* { _name_ | _name@snapshot_ } _desc_ ++
*beadm* *rollback* _name_ _snapshot_ ++
Expand Down Expand Up @@ -142,6 +143,7 @@ same installation) on a single system.
Mount as read/write (_rw_) or read-only (_ro_). Default is _rw_.

*unmount* [*-f*] _name_
*umount* [*-f*] _name_ (command alias)

Unmount an inactive boot environment.

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

project('beadm',
'rust',
version : '0.2.2-dev',
version : '0.2.3-dev',
meson_version : '>=0.60.0',
default_options : ['warning_level=2'])

Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ enum Commands {
/// Unmount an inactive boot environment.
///
/// Unmounting will not remove the mountpoint unless it is one we created.
#[command(visible_alias = "umount")]
Unmount {
/// The boot environment.
///
Expand Down