update sync script
This commit is contained in:
parent
5d4796d5cd
commit
e2372596a3
4
Makefile
4
Makefile
@ -47,7 +47,9 @@ help:
|
|||||||
html:
|
html:
|
||||||
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
||||||
pull:
|
pull:
|
||||||
./pull-content.sh
|
./sync-content.sh pull
|
||||||
|
push:
|
||||||
|
./sync-content.sh push
|
||||||
clean:
|
clean:
|
||||||
[ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)"
|
[ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)"
|
||||||
|
|
||||||
|
@ -1,15 +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
|
|
||||||
|
|
||||||
rclone copy --webdav-url="$server/remote.php/webdav/" --webdav-vendor=nextcloud --webdav-user="$user" --webdav-pass=$(rclone obscure $password) :webdav:"$ncpath" content
|
|
27
sync-content.sh
Executable file
27
sync-content.sh
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/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 copy --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 copy --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
|
Loading…
Reference in New Issue
Block a user