#!/bin/bash % for service in sorted(services): ( while true do if systemctl is-active ${service} then sleep 1 else exit 0 fi done ) & % endfor wait