diff --git a/.gitignore b/.gitignore index 98a9ea9..64b09c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ content output __pycache__ -.password diff --git a/Makefile b/Makefile index 4a5b908..801b646 100644 --- a/Makefile +++ b/Makefile @@ -46,10 +46,7 @@ help: html: "$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS) -pull: - ./sync-content.sh pull -push: - ./sync-content.sh push + clean: [ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)" diff --git a/sync-content.sh b/sync-content.sh deleted file mode 100755 index 18d9b25..0000000 --- a/sync-content.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/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