blob: 4ead9853df680bcd55ff07f3d617d805c6a2b370 (
plain) (
tree)
|
|
#!/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
|