| 123456789101112131415161718 | #!/bin/sh -e# wait startup to finishlog-helper debug "Waits until startup is complete..."while ! test -f /container/run/state/startup-donedo    sleep 0.5donefor process in "$@"do    # wait service    log-helper debug "Waits for process ${process} to be started..."    while ! pgrep -c "${process}" > /dev/null    do        sleep 0.5    donedone
 |