mirror of
https://github.com/tuna/tunasync.git
synced 2025-04-20 20:22:46 +00:00
10 lines
269 B
Bash
Executable File
10 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -d "$TUNASYNC_WORKING_DIR" ]; then
|
|
echo "Directory not exists, fail"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Syncing to $TUNASYNC_WORKING_DIR"
|
|
|
|
/usr/bin/timeout -s INT 3600 /home/tuna/.virtualenvs/bandersnatch/bin/bandersnatch -c /etc/bandersnatch.conf mirror || exit 1
|