#!/bin/sh set -e if [ -d "/run/systemd/system" ]; then exec /bin/systemctl "$@" else echo '\n"systemd" is not running in this container due to its overhead.\nUse the "service" command to start services instead. e.g.: \n\nservice --status-all' fi