easy-osm2city-podman/terrasync/run.sh

16 lines
299 B
Bash
Raw Normal View History

#! /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