summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_info.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-26 15:14:53 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-26 15:14:53 +0200
commit447140958d5bfc5f1deda1245a249cb63261124c (patch)
treed5a87d4b6ab985714e3478f412ddaef7a860297f /bin/reproducible_info.sh
parent218dc572ca192c4ca12aae01480c43f030c98bd5 (diff)
downloadjenkins.debian.net-447140958d5bfc5f1deda1245a249cb63261124c.tar.xz
reproducible: exclude hostname from kernel info
Diffstat (limited to 'bin/reproducible_info.sh')
-rwxr-xr-xbin/reproducible_info.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_info.sh b/bin/reproducible_info.sh
index ffd26584..547cbcc5 100755
--- a/bin/reproducible_info.sh
+++ b/bin/reproducible_info.sh
@@ -12,8 +12,8 @@ ARCH=$(dpkg --print-architecture)
NUM_CPU=$(grep -c '^processor' /proc/cpuinfo)
CPU_MODEL=$(cat /proc/cpuinfo |grep "model name"|head -1|cut -d ":" -f2|xargs echo)
DATETIME=$(date +'%Y-%m-%d %H:%M %Z')
-KERNEL1=$(uname -a)
-KERNEL2=$(linux64 --uname-2.6 uname -a)
+KERNEL1=$(uname -smrv)
+KERNEL2=$(linux64 --uname-2.6 uname -smrv)
for i in $BUILD_ENV_VARS ; do
echo "$i=${!i}"
done