diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-26 15:14:53 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-26 15:14:53 +0200 |
commit | 447140958d5bfc5f1deda1245a249cb63261124c (patch) | |
tree | d5a87d4b6ab985714e3478f412ddaef7a860297f | |
parent | 218dc572ca192c4ca12aae01480c43f030c98bd5 (diff) | |
download | jenkins.debian.net-447140958d5bfc5f1deda1245a249cb63261124c.tar.xz |
reproducible: exclude hostname from kernel info
-rwxr-xr-x | bin/reproducible_info.sh | 4 |
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 |