mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Try to avoid issues when the Docker daemon restarts.
This change will allow the Docker daemon's init script to wait up to 5 minutes before being forcibly terminated by the initscript. Many non-trivial containers will take more than the default 3 seconds to stop, which can result in containers whose rootfs is still mounted and will not restart when the daemon starts up again, or worse, orphan processes that are still running. Signed-off-by: Steven Merrill <steven.merrill@gmail.com>
This commit is contained in:
parent
e9b5acba4b
commit
640d2ef6f5
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ start() {
|
|||
|
||||
stop() {
|
||||
echo -n $"Stopping $prog: "
|
||||
killproc -p $pidfile $prog
|
||||
killproc -p $pidfile -d 300 $prog
|
||||
retval=$?
|
||||
echo
|
||||
[ $retval -eq 0 ] && rm -f $lockfile
|
||||
|
|
Loading…
Reference in a new issue