ContainerImage.InotifyRsync/init/entrypoint.sh

11 lines
329 B
Bash

#!/bin/sh
set -eox pipefail
if [ "$RUN_ONCE" = "true" ]; then
rsync -az --info=progress --no-links $SOURCE_DIR $TARGET_DIR
else
cat /proc/sys/fs/inotify/max_user_watches
while inotifywait -r -e modify,create,delete,move $SOURCE_DIR; do
rsync -az --info=progress --no-links $SOURCE_DIR $TARGET_DIR
done
fi