diff options
author | Arquivo Archive <arquivo@localhost> | 2016-11-27 13:16:20 -0200 |
---|---|---|
committer | Arquivo Archive <arquivo@localhost> | 2016-11-27 13:16:20 -0200 |
commit | dd2e6cfed90ba3b240aefc050dd3b1f1603b0796 (patch) | |
tree | 3fe230771f675fd5b69652b94852cf58dfef3181 | |
parent | 4dab3a2087ae1a032ad1b3ae39efb00c6dcf1973 (diff) | |
download | arquivo-dd2e6cfed90ba3b240aefc050dd3b1f1603b0796.tar.gz arquivo-dd2e6cfed90ba3b240aefc050dd3b1f1603b0796.tar.bz2 |
Sync script: check for git annex
-rwxr-xr-x | bin/sync | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -8,11 +8,13 @@ CWD="`/bin/pwd`" GIT="/usr/bin/git" NICE="/usr/bin/nice -n 19" IONICE="/user/bin/ionice -c 3" -ARCHIVE="/var/cache/sites/arquivo" +ARCHIVE="/var/cache/media/arquivo" # Run -cd $ARCHIVE -$IONICE $NICE $GIT annex add . && \ -$IONICE $NICE $GIT annex sync && \ -$IONICE $NICE $GIT annex get . &> /dev/null -cd $CWD +if [ -d "$ARCHIVE/.git/annex" ]; then + cd $ARCHIVE + $IONICE $NICE $GIT annex add . && \ + $IONICE $NICE $GIT annex sync && \ + $IONICE $NICE $GIT annex get . &> /dev/null + cd $CWD +fi |