ansible-archlinux-docker/initctl_faker
Markus Pesch c1df951665
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2023-01-10 17:43:02 +01:00

25 lines
380 B
Bash

#!/bin/sh
ALIAS_CMD="$(echo ""$0"" | sed -e 's?/sbin/??')"
case "${ALIAS_CMD}" in
start|stop|restart|reload|status)
exec service $1 ${ALIAS_CMD}
;;
esac
case "$1" in
list )
exec service --status-all
;;
reload-configuration )
exec service $2 restart
;;
start|stop|restart|reload|status)
exec service $2 $1
;;
\?)
exit 0
;;
esac