wait for termination to avoid busy chroot
This commit is contained in:
parent
ddcc703154
commit
f8fd08887d
1 changed files with 4 additions and 0 deletions
|
@ -35,6 +35,8 @@ if [ "$#" -eq 1 ]; then
|
||||||
echo $namever
|
echo $namever
|
||||||
fi
|
fi
|
||||||
done > "${tmpdir}/unneededdepends.list" < "${tmpdir}/bdselection.list"
|
done > "${tmpdir}/unneededdepends.list" < "${tmpdir}/bdselection.list"
|
||||||
|
# signal that the script is about to exit
|
||||||
|
echo > "${tmpdir}/myfifo"
|
||||||
elif [ "$#" -eq 2 ]; then
|
elif [ "$#" -eq 2 ]; then
|
||||||
case "$1" in
|
case "$1" in
|
||||||
chroot-setup)
|
chroot-setup)
|
||||||
|
@ -75,6 +77,8 @@ elif [ "$#" -eq 2 ]; then
|
||||||
tmpdir="$2"
|
tmpdir="$2"
|
||||||
# signal that the build is done
|
# signal that the build is done
|
||||||
echo > "${tmpdir}/myfifo"
|
echo > "${tmpdir}/myfifo"
|
||||||
|
# wait for the parent process to finish and exit
|
||||||
|
cat "${tmpdir}/myfifo" > /dev/null
|
||||||
;;
|
;;
|
||||||
equivs)
|
equivs)
|
||||||
namever="$2"
|
namever="$2"
|
||||||
|
|
Loading…
Reference in a new issue