Files
docker-alpine-mirror/root/etc/s6-overlay/s6-rc.d/init-rsync-config/run
user.name pi-farm 909a40b099
All checks were successful
/ release-and-build (push) Successful in 36s
fix dependencies in s6-overlay
2026-02-25 13:09:55 +01:00

21 lines
574 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
echo "Start: init-rsync-config run script"
mkdir -p /config /app/www
if [ ! -f /config/rsyncd.conf ]; then
echo "Copy default rsyncd.conf ..."
cp /defaults/rsyncd.conf /config/rsyncd.conf
fi
if [ ! -f /config/rsync-rules.txt ]; then
echo "Copy default rsync-rules.txt ..."
cp /defaults/rsync-rules.txt /config/rsync-rules.txt
fi
echo "Set permissions to PUID: ${PUID:-911} and PGID: ${PGID:-1000}"
chown -R "${PUID:-911}:${PGID:-1000}" /config
chown -R "${PUID:-911}:${PGID:-1000}" /app/www
echo "Finish: init-rsync-config"