mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 19:09:31 +00:00
This goes with the experimental `docker` output format. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
121 B
Bash
Executable File
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
|