zsh-workers
 help / color / mirror / code / Atom feed
* Zsh scripts leave defunct processes when running under docker exec
@ 2015-02-11  4:43 Soares Chen
  2015-02-11  6:53 ` Bart Schaefer
  0 siblings, 1 reply; 8+ messages in thread
From: Soares Chen @ 2015-02-11  4:43 UTC (permalink / raw)
  To: zsh-workers

This only happens when the script is running inside a shell spawned by
`docker exec`. When running under normal system and under `docker
run`, there is no defunct process.

This bug is first discovered when I run nvm in docker
(https://github.com/creationix/nvm/issues/650). It was then discovered
that Docker's nsenter did not properly handle the SIGCHLD signal
raised from zsh. (https://github.com/docker/libcontainer/pull/369)
Even though it is now been fixed by Docker, I am not sure why zsh
would cause this bug in the first place.

I have a test script at the end of this post and also share it on
https://gist.github.com/soareschen/240e49116c7f2632d179

Steps to reproduce:

# terminal 1
docker run -it --rm --name test-zsh ubuntu:latest /bin/bash
apt-get install zsh curl
curl https://gist.githubusercontent.com/soareschen/240e49116c7f2632d179/raw/0be67acefd8d18fd62bb181998996f9a5772dc64/docker-zsh-test.sh
> docker-zsh-test.sh
chmod +x docker-zsh-test.sh
./docker-zsh-test.sh
ps auxf # no defunct process

# terminal 2
docker exec -it test-zsh /bin/zsh
./docker-zsh-test.sh
ps auxf # sed and zsh shown as defunct processes

#!/bin/zsh
# docker-zsh-test.sh
if [[ "$(echo "the black cat was chased by the brown dog" | sed -e
's/cat/fox/g' | grep fox)" = "" ]]; then
  echo "cat"
else
  echo "fox"
fi


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-02-15 18:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-11  4:43 Zsh scripts leave defunct processes when running under docker exec Soares Chen
2015-02-11  6:53 ` Bart Schaefer
2015-02-11 10:11   ` Peter Stephenson
2015-02-11 16:13     ` Bart Schaefer
2015-02-13 10:39       ` Daniel Shahaf
2015-02-14 18:58         ` Bart Schaefer
2015-02-15 14:03           ` Soares Chen
2015-02-15 18:20             ` Peter Stephenson

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).