Files
linuxkit/alpine/packages/diagnostics/etc/init.d/diagnostics
Justin Cormack ab9964e207 Start diagnostics server earlier, before Docker
Allows it to be used to see what the boot state is.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-01-25 15:17:55 +00:00

12 lines
93 B
Plaintext
Executable File

#!/sbin/openrc-run
depend()
{
after docker containerd
}
start()
{
/usr/bin/diagnostics
}