diff options
author | Jérémy Bobbio <lunar@debian.org> | 2015-01-19 18:56:06 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-19 19:09:44 +0100 |
commit | 385d843820d3a2f5561f0eb7ea7372f1e7fdbaa8 (patch) | |
tree | 884dbba468ce82a5bec9690e90597d4ba707aed3 /etc/pbuilder/rebuild-hooks | |
parent | 30679ab6a81684b380653637e4f2a5fe31a15cae (diff) | |
download | jenkins.debian.net-385d843820d3a2f5561f0eb7ea7372f1e7fdbaa8.tar.xz |
reproducible: change the hostname in the second build
Diffstat (limited to 'etc/pbuilder/rebuild-hooks')
-rwxr-xr-x | etc/pbuilder/rebuild-hooks/D01_hostname | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/pbuilder/rebuild-hooks/D01_hostname b/etc/pbuilder/rebuild-hooks/D01_hostname new file mode 100755 index 00000000..1bf4c2d2 --- /dev/null +++ b/etc/pbuilder/rebuild-hooks/D01_hostname @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +# exit if we are in the same UTS namespace than init +[ "$(readlink /proc/1/ns/uts)" = "$(readlink /proc/self/ns/uts)" ] && exit 0 + +echo "I: Changing hostname to test build reproducibility" >&2 +sed -e '/^127.0.0.1/s/$/ i-capture-the-hostname/' -i /etc/hosts +hostname i-capture-the-hostname |