easy-osm2city-podman/terrasync/run.sh
fly 5d259b9e00 Terrasync container
Signed-off-by: fly <merspieler@airmail.cc>
2021-06-22 10:27:27 +02:00

15 lines
299 B
Bash
Executable file

#! /bin/bash
logfile=/log/$(date +%Y-%m-%d).log
# Pre update hook
if [ -f "/config/pre.sh" ]; then
/config/pre.sh $logfile
fi
/TerraSync/terrasync.py --url $URL --remove-orphan --target=/scenery/ > $logfile 2>&1
# Post update hook
if [ -f "/config/post.sh" ]; then
/config/post.sh $logfile
fi