diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-02-24 20:06:36 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-02-24 20:06:36 +0100 |
commit | 5cde8a7b9749ae1de0bfc9504fa9c92d28b17d94 (patch) | |
tree | 295b0e2018a766cb9296d93df2579bcf8a18183b /etc/pbuilder/rebuild-hooks/D01_modify_environment | |
parent | 05216d49654df4d0d14e41c2355d844c409b8bc9 (diff) | |
download | jenkins.debian.net-5cde8a7b9749ae1de0bfc9504fa9c92d28b17d94.tar.xz |
reproducible: also test for unreproducibility due to difference in umask
Diffstat (limited to 'etc/pbuilder/rebuild-hooks/D01_modify_environment')
-rwxr-xr-x | etc/pbuilder/rebuild-hooks/D01_modify_environment | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/etc/pbuilder/rebuild-hooks/D01_modify_environment b/etc/pbuilder/rebuild-hooks/D01_modify_environment new file mode 100755 index 00000000..521359f6 --- /dev/null +++ b/etc/pbuilder/rebuild-hooks/D01_modify_environment @@ -0,0 +1,12 @@ +#!/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-capture-the-hostname.i-capture-the-domain/' -i /etc/hosts +hostname i-capture-the-hostname +domainname i-capture-the-domain +umask 0026 |