Files
linuxkit/pkg/init-container/bin/rc.init
Justin Cormack dbe50976c3 Add suitable init for running in a container
This goes with the experimental `docker` output format.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-06-07 15:33:52 +01:00

11 lines
121 B
Bash
Executable File

#!/bin/sh
# execute other init processes
INITS="$(find /etc/init.d -type f | sort)"
for f in $INITS
do
$f &
done
wait