1
0
mirror of https://github.com/rancher/os.git synced 2025-09-09 18:50:04 +00:00

Farewell PID one

This change no longer runs Docker as PID 1.  Instead PID 1 is a very
simple zombie reaper and Docker is moved as a child of that PID.
This commit is contained in:
Darren Shepherd
2015-12-22 15:14:51 -07:00
parent 6df9841283
commit cd2829d220
6 changed files with 47 additions and 2 deletions

View File

@@ -84,6 +84,8 @@ def wait_for_ssh(qemu, ssh_command=['./scripts/ssh', '--qemu'], command=['docker
i += 1
print('\nWaiting for ssh and docker... ' + str(i))
time.sleep(1)
if i > 60:
raise 'Failed to connect to SSH'
assert qemu.returncode is None