diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2015-05-24 08:06:42 +0100 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2015-05-24 08:06:42 +0100 |
commit | 8a57cf2f7a1f83083dec391a2c157f552c0725a7 (patch) | |
tree | 431336b775acb24ba41c85a55f5d827cee36d551 | |
parent | cbefaa1b5750a1a24ac343633e9ad3ba794f2938 (diff) |
abslibre: pass '--quiet' to rsync
-rwxr-xr-x | abslibre | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ ABSGIT=/srv/git/repositories/abslibre.git # Remote # ABSGIT=http://projects.parabolagnulinux.org/abslibre.git BLACKLIST='https://projects.parabolagnulinux.org/blacklist.git/plain/blacklist.txt' -SYNCARGS='-mrtv --no-motd --delete-after --no-p --no-o --no-g' +SYNCARGS='-mrtv --no-motd --delete-after --no-p --no-o --no-g --quiet' BLFILE=/tmp/blacklist.txt # Variables from abs.conf @@ -60,7 +60,7 @@ function sync_abs_libre() { ${ABSROOT} \ ${ABSLIBRE} \ && - for ARCH in i686 x86_64; do rsync -v -mrtq --no-motd --no-p --no-o --no-g --exclude=.git/ /var/tmp/abslibre/ ${ABSLIBRE}/${ARCH}/; done) || { + for ARCH in i686 x86_64; do rsync -v -mrtq --no-motd --no-p --no-o --no-g --quiet --exclude=.git/ /var/tmp/abslibre/ ${ABSLIBRE}/${ARCH}/; done) || { printf "[FAILED]\n" return 1 } |