Skip to content

Commit

Permalink
fuse-overlayfs: install version 1.14
Browse files Browse the repository at this point in the history
https://github.com/containers/fuse-overlayfs

example usage:

fuse-overlayfs \
   -o lowerdir=/some/read-only/path \
   -o workdir=/scratch/local2/my_local_wd \
   -o squash_to_uid=$UID \
   -o squash_to_gid=$(id -g $UID) \
   -o noacl \
   -o upperdir=my_changes \
   merged_mount_point
  • Loading branch information
thomas committed Mar 18, 2025
1 parent 371f896 commit a086e5c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions fuse-overlayfs.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/env beesh

# BEE_VERSION fuse-overlayfs-1.14-0

#SRCURL[0]="https://github.com/containers/fuse-overlayfs/archive/refs/tags/v1.14.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/90e428d875f56e3ea3ecb83c3245a8c2/fuse-overlayfs-1.14.tar.gz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

mee_patch() {
./autogen.sh
}

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

0 comments on commit a086e5c

Please sign in to comment.