summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-06-15 18:29:31 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-16 00:44:41 +0200
commit52d302e6d06f251a8a0efed46fb2896f468342d3 (patch)
tree17f2403d43b9d59dda5d9766963335464eb36c80 /bin
parent29db0e8eaa3efe5ad021ce5fdb7b39bd608f5d5f (diff)
downloadjenkins.debian.net-52d302e6d06f251a8a0efed46fb2896f468342d3.tar.xz
reproducible: build: call timeout with sudo, and not the reverse, as a user-called timeout can't kill a root process + give pbuilder 6 minutes to exit after SIGTERM before SIGKILL
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 6cbc486b..e0270a18 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -368,7 +368,8 @@ first_build(){
local TMPCFG=$(mktemp -t pbuilderrc_XXXX --tmpdir=$TMPDIR)
set -x
printf "BUILDUSERID=1111\nBUILDUSERNAME=pbuilder1\n" > $TMPCFG
- ( timeout -k 12h 12h ionice -c 3 nice sudo \
+ # remember to change the sudoers setting if you change the following command
+ ( sudo timeout -k 12.1h 12h /usr/bin/ionice -c 3 /usr/bin/nice \
DEB_BUILD_OPTIONS="parallel=$NUM_CPU" \
TZ="/usr/share/zoneinfo/Etc/GMT+12" \
pbuilder --build \
@@ -426,7 +427,8 @@ build_rebuild() {
set -x
local TMPCFG=$(mktemp -t pbuilderrc_XXXX --tmpdir=$TMPDIR)
printf "BUILDUSERID=2222\nBUILDUSERNAME=pbuilder2\n" > $TMPCFG
- ( timeout -k 12h 12h ionice -c 3 nice sudo \
+ # remember to change the sudoers setting if you change the following command
+ ( sudo timeout -k 12.1h 12h /usr/bin/ionice -c 3 /usr/bin/nice \
DEB_BUILD_OPTIONS="parallel=$(echo $NUM_CPU-1|bc)" \
TZ="/usr/share/zoneinfo/Etc/GMT-14" \
LANG="fr_CH.UTF-8" \