Files
teslausb/run/rclone_archive/verify-archive-configuration.sh
2018-10-31 00:00:05 -07:00

12 lines
280 B
Bash

#!/bin/bash -eu
function verify_configuration () {
echo "Verifying rlcone configuration..."
if ! rclone lsd "$RCLONE_DRIVE": | grep -q "$RCLONE_PATH"
then
echo "STOP: Could not find the $RCLONE_DRIVE:$RCLONE_PATH"
exit 1
fi
}
verify_configuration