lexicographe/sync-content.sh
Adrian Amaglio 3f1348c6eb other update
2023-05-05 14:17:09 +02:00

28 lines
767 B
Bash
Executable File

#!/bin/sh
server='https://nuage.jean-cloud.net'
user="lexicographe"
ncpath=content/
password="$CLOUD_PASSWORD"
if [ -z "$password" ] ; then
password="$(cat .password)"
fi
if [ -z "$password" ] ; then
echo "Aucun mot de passe trouvé"
exit 1
fi
action="$1"
if [ -z "$action" ] ; then
action=pull
fi
if [ "$action" = 'pull' ] ; then
rclone sync --webdav-url="$server/remote.php/webdav/" --webdav-vendor=nextcloud --webdav-user="$user" --webdav-pass=$(rclone obscure $password) :webdav:"$ncpath" content
elif [ "$action" = 'push' ] ; then
rclone sync --webdav-url="$server/remote.php/webdav/" --webdav-vendor=nextcloud --webdav-user="$user" --webdav-pass=$(rclone obscure $password) content :webdav:"$ncpath"
else
echo "unknown action: $action"
exit 1
fi