Skip to content

Commit

Permalink
bwrap: use fusermount3 instead of fusermount
Browse files Browse the repository at this point in the history
rofiles-fuse is now built against libfuse3 on all the platforms we care
about in rpm-ostree. Accordingly also switch over the fusermount utility
we use to the v3 version to match. This also allows composes to drop out libfuse2 if
nothing else pulls it in.

See also: coreos#5047 (comment)
  • Loading branch information
jlebon committed Aug 20, 2024
1 parent 238971e commit e4bec9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/bwrap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ impl Drop for RoFilesMount {
return;
};
// We need to unmount before letting the tempdir cleanup run.
let success = Command::new("fusermount")
let success = Command::new("fusermount3")
.arg("-u")
.arg(tempdir.path())
.status()
Expand Down

0 comments on commit e4bec9a

Please sign in to comment.