1
0
mirror of https://github.com/phusion/baseimage-docker.git synced 2026-03-26 12:29:07 +00:00

down wait for 7 secs this will fix it.

This commit is contained in:
Anshul Sharma
2017-04-11 08:07:32 +05:30
committed by GitHub
parent a7b8b36359
commit ac382d47b8

View File

@@ -247,7 +247,7 @@ def wait_for_runit_or_interrupt(pid):
def shutdown_runit_services(quiet = False): def shutdown_runit_services(quiet = False):
if not quiet: if not quiet:
debug("Begin shutting down runit services...") debug("Begin shutting down runit services...")
os.system("/usr/bin/sv down /etc/service/*") os.system("/usr/bin/sv -w %d down /etc/service/*", KILL_PROCESS_TIMEOUT)
def wait_for_runit_services(): def wait_for_runit_services():
debug("Waiting for runit services to exit...") debug("Waiting for runit services to exit...")