mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-14 09:31:52 +00:00
12 lines
204 B
Bash
Executable File
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
|