ContainerImage.InotifyRsync/init/entrypoint.sh

11 lines
317 B
Bash
Raw Normal View History

2020-11-08 19:34:59 +00:00
#!/bin/sh
set -eox pipefail
2020-11-08 20:07:02 +00:00
if [ "$RUN_ONCE" = "true" ]; then
2020-11-14 14:05:37 +00:00
rsync -az --info=progress "$SOURCE_DIR" "$TARGET_DIR"
2020-11-08 19:34:59 +00:00
else
2020-11-08 21:16:03 +00:00
cat /proc/sys/fs/inotify/max_user_watches
2020-11-14 14:08:59 +00:00
while inotifywait -r -e modify,create,delete,move "$SOURCE_DIR"; do
2020-11-14 14:05:37 +00:00
rsync -az --info=progress "$SOURCE_DIR" "$TARGET_DIR"
2020-11-08 19:34:59 +00:00
done
fi