From 5cde8a7b9749ae1de0bfc9504fa9c92d28b17d94 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 24 Feb 2015 20:06:36 +0100 Subject: reproducible: also test for unreproducibility due to difference in umask --- etc/pbuilder/rebuild-hooks/D01_hostname | 11 ----------- etc/pbuilder/rebuild-hooks/D01_modify_environment | 12 ++++++++++++ 2 files changed, 12 insertions(+), 11 deletions(-) delete mode 100755 etc/pbuilder/rebuild-hooks/D01_hostname create mode 100755 etc/pbuilder/rebuild-hooks/D01_modify_environment (limited to 'etc/pbuilder') diff --git a/etc/pbuilder/rebuild-hooks/D01_hostname b/etc/pbuilder/rebuild-hooks/D01_hostname deleted file mode 100755 index 57c785b3..00000000 --- a/etc/pbuilder/rebuild-hooks/D01_hostname +++ /dev/null @@ -1,11 +0,0 @@ -#!/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 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 -- cgit v1.2.3-54-g00ecf