1
0
mirror of /repos/baseimage-docker.git synced 2025-12-30 08:01:31 +01:00

Merge pull request #94 from pda/stderr-not-proctitle

my_init: runsvdir no longer redirects stderr to proctitle.
This commit is contained in:
Hongli Lai 2014-06-20 11:26:39 +02:00
commit feab2fce75

View File

@ -219,7 +219,7 @@ def run_startup_files():
def start_runit(): def start_runit():
info("Booting runit daemon...") info("Booting runit daemon...")
pid = os.spawnl(os.P_NOWAIT, "/usr/bin/runsvdir", "/usr/bin/runsvdir", pid = os.spawnl(os.P_NOWAIT, "/usr/bin/runsvdir", "/usr/bin/runsvdir",
"-P", "/etc/service", "log: %s" % ('.' * 395)) "-P", "/etc/service")
info("Runit started as PID %d" % pid) info("Runit started as PID %d" % pid)
return pid return pid