aboutsummaryrefslogtreecommitdiff
path: root/src/common-utils/bin/systemctl
blob: 4ead9853df680bcd55ff07f3d617d805c6a2b370 (plain) (blame)
1
2
3
4
5
6
7
#!/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