2025-06-20 12:34:13 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
dir=$(pwd)
|
|
|
|
|
|
|
|
|
|
# overlay our directories
|
2025-10-20 13:57:34 +02:00
|
|
|
test -n "$BROWSER" && test -f /.joe || {
|
2025-06-20 12:34:13 +02:00
|
|
|
find . -type d -mindepth 1 | while read dir; do
|
|
|
|
|
cp -d -r ./$dir/* /$dir/.
|
|
|
|
|
done
|
|
|
|
|
echo 1 > /.overlayfs
|
|
|
|
|
echo "[i] imported overlay fs"
|
|
|
|
|
echo "[i] editor 'joe' installed" | logger
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|