lexicographe/sync-content.sh

28 lines
767 B
Bash
Raw Normal View History

2023-05-05 08:34:09 +00:00
#!/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
2023-05-05 12:17:09 +00:00
rclone sync --webdav-url="$server/remote.php/webdav/" --webdav-vendor=nextcloud --webdav-user="$user" --webdav-pass=$(rclone obscure $password) :webdav:"$ncpath" content
2023-05-05 08:34:09 +00:00
elif [ "$action" = 'push' ] ; then
2023-05-05 12:17:09 +00:00
rclone sync --webdav-url="$server/remote.php/webdav/" --webdav-vendor=nextcloud --webdav-user="$user" --webdav-pass=$(rclone obscure $password) content :webdav:"$ncpath"
2023-05-05 08:34:09 +00:00
else
echo "unknown action: $action"
exit 1
fi