diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-26 02:29:43 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-26 02:29:43 +0200 |
commit | 0daee63009786ef70d6112975583a480c1671ed2 (patch) | |
tree | 12fe8a59aa8d7567187899ad87d11dc921e53c6e | |
parent | ea4e95aaf16c4158cfac84510c380bdff3a8dc1c (diff) | |
download | jenkins.debian.net-0daee63009786ef70d6112975583a480c1671ed2.tar.xz |
reproducible: explain that we'll soon vary time properly too, except on FreeBSD
-rwxr-xr-x | bin/reproducible_common.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index eb42345f..3ef369d8 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -316,11 +316,14 @@ write_explaination_table() { write_page "<tr><td>umask</td><td>0022<td>0002</td><tr>" write_page "<tr><td>CPU type</td><td>$(cat /proc/cpuinfo|grep 'model name'|head -1|cut -d ":" -f2-)</td><td>same for both builds (currently, work in progress)</td></tr>" write_page "<tr><td>year, month, date</td><td>today ($DATE)</td><td>same for both builds (currently, work in progress)</td></tr>" + if [ "$1" != "FreeBSD" ] ; then + write_page "<tr><td>hour, minute</td><td>hour and minute will probably vary between two builds...</td><td>but this is not enforced systematically... (currently, work in progress)</td></tr>" + else + write_page "<tr><td>hour, minute</td><td>hour and minute will probably vary between two builds...</td><td>but this is not enforced systematically...)</td></tr>" + fi if [ "$1" = "debian" ] ; then - write_page "<tr><td>hour, minute</td><td>hour is usually the same...</td><td>usually, the minute differs... (currently, work in progress)</td></tr>" write_page "<tr><td><em>everything else...</em></td><td colspan=\"2\">is likely the same. So far, this is just about the <em>prospects</em> of <a href=\"https://wiki.debian.org/ReproducibleBuilds\">reproducible builds of Debian</a> - there will be more variations in the wild.</td></tr>" else - write_page "<tr><td>hour, minute</td><td>hour is usually the same...</td><td>the minute differs... (currently, work in progress)</td></tr>" write_page "<tr><td><em>everything else...</em></td><td colspan=\"2\">is likely the same. There will be more variations in the wild.</td></tr>" fi write_page "</table></p>" |