From: Silvio Rhatto Date: Sun, 2 Oct 2016 20:01:43 +0000 (-0300) Subject: Remote destination support at sync-media-export X-Git-Tag: 0.2.4~68 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=599d3625ebf95ba47ef298f5960f321cabe24401;p=hydra.git Remote destination support at sync-media-export --- diff --git a/share/hydractl/sync-media-export b/share/hydractl/sync-media-export index 7b47639..8647acc 100755 --- a/share/hydractl/sync-media-export +++ b/share/hydractl/sync-media-export @@ -1,6 +1,6 @@ #!/bin/bash # -# Copy git-annex repositories to remote server. +# Copy git-annex repositories to remote destination. # # Parameters @@ -23,15 +23,23 @@ for file in `ls $MEDIA`; do cd $MEDIA - if ssh $DESTINATION if [ -d \"/var/cache/media/$file\" ] \; then echo exists\; fi | grep -q exists; then - echo "Remote $file already exists, skipping..." - continue; - fi + # Check for remote or local destinations + if [ ! -d "$DESTINATION" ]; then + if ssh $DESTINATION if [ -d \"/var/cache/media/$file\" ] \; then echo exists\; fi | grep -q exists; then + echo "Remote $file already exists, skipping..." + continue; + fi - git clone $file $file.git && \ - rsync -avz $file.git/ $DESTINATION:/var/cache/media/$file/ && \ - rm -rf $file.git - echo "" + git clone $file $file.git && \ + rsync -avz $file.git/ $DESTINATION:/var/cache/media/$file/ && \ + rm -rf $file.git + echo "" + else + mkdir -p $DESTINATION/var/cache/media + if [ ! -d "$DESTINATION/var/cache/media/$FILE" ]; then + ( cd $DESTINATION/var/cache/media && git clone $MEDIA/$file ) + fi + fi ) fi done