Skip to content
Snippets Groups Projects
Commit 8d3c7dc5 authored by Roland Clobus's avatar Roland Clobus Committed by Holger Levsen
Browse files

reproducible_debstrap: Use 'eatmydata' for 'debootstrap'


On a CI system calling 'sync' influences the other processes that are
running on the shared host. 'debootstrap' calls 'sync' in its second
stage.
See also #1092641

Signed-off-by: default avatarHolger Levsen <holger@layer-acht.org>
parent 641ac9eb
No related branches found
No related tags found
No related merge requests found
......@@ -70,14 +70,14 @@ for LOOP in "first" "second" ; do
first) SUBDIR=b1
case $TOOL in
mmdebstrap) REALTOOL="mmdebstrap -v" ;;
debootstrap) REALTOOL="debootstrap --verbose" ;;
debootstrap) REALTOOL="eatmydata debootstrap --verbose" ;;
cdebootstrap) REALTOOL="cdebootstrap --verbose" ;;
esac
;;
second) SUBDIR=b2
case $TOOL in
mmdebstrap) REALTOOL=$TOOL ;;
debootstrap) REALTOOL=$TOOL ;;
debootstrap) REALTOOL="eatmydata $TOOL" ;;
cdebootstrap) REALTOOL=cdebootstrap-static ;;
esac
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment