tools-systemd: don't do parallel runs

This commit is contained in:
Anthony G. Basile 2018-03-02 11:27:08 -05:00
parent c07cc3d46a
commit f3fb6696b1

View file

@ -47,10 +47,8 @@ main() {
# The parallelization `( do_stages ... ) &` doesn't work here
# if catalyst is using snapcache, bug #519656
for arch in amd64 i686; do
(
do_stages ${arch}
[[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log
) &
do_stages ${arch}
[[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log
done
}