1
1
mirror of https://github.com/containers/udica synced 2024-09-07 07:30:40 +02:00

cirrus: Install fuse-overlayfs

Fixes:
podman run -d -v /home:/home:ro -v /var/spool:/var/spool:rw -p 21:21 fedora sleep 1h  # ./contrib/cirrus/test.sh:11 in main()
Error: configure storage: overlay: can't stat program "/usr/bin/fuse-overlayfs": faccessat /usr/bin/fuse-overlayfs: no such file or directory

Signed-off-by: Vit Mojzis <vmojzis@redhat.com>
This commit is contained in:
Vit Mojzis 2024-05-29 22:22:57 +02:00
parent 5ed2702afd
commit afcb14faaa

View File

@ -11,7 +11,8 @@ case "${OS_RELEASE_ID}" in
msg "Installing necessary additional packages"
ooe.sh dnf install -y \
setools-console \
systemd-devel
systemd-devel \
fuse-overlayfs
;;
*) bad_os_id_ver ;;
esac