Files
linuxkit/pkg/init-container/bin/rc.init
Justin Cormack 0e65f04ab4 update init for containers for recent changes
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-08-10 14:57:53 +01:00

12 lines
204 B
Bash
Executable File

#!/bin/sh
# execute other init processes
INITS="$(find /etc/init.d ! -type d 2>/dev/null | sort)"
for f in $INITS
do
$f
done
# wait forever to keep container open
while true; do sleep 2147483647; done