summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-02-05 12:36:57 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-02-05 12:36:57 -0500
commitbcc2600557620c6a8a072143fa98305c965b1ce3 (patch)
tree324154c4a404fb8654e1cd3dbb7b46cf92b4054b
parentaeaa5f4977858ddca2739b2bd25e1fb5d8ac4b31 (diff)
reporead-rsync: Ignore mips64el and armv7h for now.
MIPS shouldn't be showing up; so ignoring it is working around a bug in repo. ARM is confusing it because there are discrepancies for arch=(any) packages between x86 and ARM.
-rw-r--r--parabolaweb-reporead-rsync.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/parabolaweb-reporead-rsync.in b/parabolaweb-reporead-rsync.in
index d71cb2a..8a9e217 100644
--- a/parabolaweb-reporead-rsync.in
+++ b/parabolaweb-reporead-rsync.in
@@ -27,6 +27,7 @@ rsync -v --no-motd -mrtlH --no-p \
r=0
find "$RSYNCDIR" -name '*.files.tar.gz' -not -name '.*' |
sed -r 's|.*/([^/]+)/[^/]+$|\1 &|' |
+ grep -v -e '^mips64el ' -e '^armv7h ' |
while read -r arch filename; do
echo reporead "$arch" "$filename"
python2 "${WEBDIR}/manage.py" reporead "$arch" "$filename" || r=$?