summaryrefslogtreecommitdiffstats
path: root/scripts/grab-logs.sh
diff options
context:
space:
mode:
authorLaura Abbott <labbott@redhat.com>2019-12-02 13:10:41 -0500
committerLaura Abbott <labbott@redhat.com>2019-12-02 13:59:05 -0500
commit9f6ee1011cd7cef63aa62c710601fbe03488cd8c (patch)
treeb0b2678951e994de2e693964023a4bf93007af2b /scripts/grab-logs.sh
parentabd6b9505d178a5acc8147b7bd67043f876ab2ff (diff)
downloadkernel-9f6ee1011cd7cef63aa62c710601fbe03488cd8c.tar.gz
kernel-9f6ee1011cd7cef63aa62c710601fbe03488cd8c.tar.xz
kernel-9f6ee1011cd7cef63aa62c710601fbe03488cd8c.zip
Remove some dead files
These have either not been heavily used or not updated in a very long time. Just remove them. It's cheap to bring these back if someone actually wants them.
Diffstat (limited to 'scripts/grab-logs.sh')
-rwxr-xr-xscripts/grab-logs.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/scripts/grab-logs.sh b/scripts/grab-logs.sh
deleted file mode 100755
index 571b503bb..000000000
--- a/scripts/grab-logs.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# Script helps download the build logs for the current tree.
-# The downloaded logs will be saved in a logs/ within the
-# tree.
-
-BASEDIR="$(dirname "$(cd $(dirname $BASH_SOURCE[0]) && pwd)")"
-pushd $BASEDIR > /dev/null
-
-VER=$(fedpkg verrel)
-ver=$(echo $VER | sed -e 's/-/ /g' | awk '{print $2}')
-rev=$(echo $VER | sed -e 's/-/ /g' | awk '{print $3}')
-
-# keep logs in one place. If logs directory does not exist, make it.
-if [ -d "$BASEDIR/logs" ]; then
- DIR="$BASEDIR/logs"
-else
- mkdir "$BASEDIR/logs"
- DIR="$BASEDIR/logs"
-fi
-
-# Common architectures that have build logs.
-ARCHS[0]=i686
-ARCHS[1]=x86_64
-ARCHS[2]=noarch
-ARCHS[3]=armv7hl
-
-for arch in ${ARCHS[@]}; do
- URL=http://kojipkgs.fedoraproject.org/packages/kernel/$ver/$rev/data/logs/$arch/build.log
- # Only download logs if exist
- wget --spider -q $URL
- if [ $? -eq 0 ]; then
- wget -O $DIR/build-$VER-$arch.log $URL
- fi
-done
-popd > /dev/null