diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-30 22:38:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-30 22:38:33 +0200 |
commit | f8cdb73c69a7544cbef5532fa6d241491ff3e140 (patch) | |
tree | 82bb24e3ecbd1ac2462b5326de04917e69e5fd8a /bin | |
parent | 9e38efbe7c3b8773fd92215a00bb9c325d7a83b3 (diff) | |
download | jenkins.debian.net-f8cdb73c69a7544cbef5532fa6d241491ff3e140.tar.xz |
reproducible: add script to capture build node information (work in progress)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_info.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/reproducible_info.sh b/bin/reproducible_info.sh new file mode 100755 index 00000000..c73fef65 --- /dev/null +++ b/bin/reproducible_info.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Copyright 2015 Holger Levsen <holger@layer-acht.org> +# released under the GPLv=2 + +set -e + +ARCH=$(dpkg --print-architecture) +NUM_CPU=$(grep -c '^processor' /proc/cpuinfo) +DATETIME=$(date +'%Y-%m-%d %H:%M %Z') + +for i in ARCH NUM_CPU DATETIME ; do + echo "$i['$HOSTNAME']=\"${!i}\"" +done |