Markus Pesch
c1df951665
All checks were successful
continuous-integration/drone/push Build is passing
25 lines
380 B
Bash
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
|