mirror of https://github.com/docker/docs.git
Merge pull request #4879 from gorsuch/exec-upstart
Use "exec" in the upstart script to let upstart manage the docker process instead of a shell
This commit is contained in:
commit
db20cb0e1a
|
@ -37,5 +37,5 @@ script
|
||||||
if [ -f /etc/default/$UPSTART_JOB ]; then
|
if [ -f /etc/default/$UPSTART_JOB ]; then
|
||||||
. /etc/default/$UPSTART_JOB
|
. /etc/default/$UPSTART_JOB
|
||||||
fi
|
fi
|
||||||
"$DOCKER" -d $DOCKER_OPTS
|
exec "$DOCKER" -d $DOCKER_OPTS
|
||||||
end script
|
end script
|
||||||
|
|
Loading…
Reference in New Issue