16 lines
421 B
Plaintext
16 lines
421 B
Plaintext
#!/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-config..."
|
|
cp /defaults/rsyncd.conf /config/rsyncd.conf
|
|
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" |