systemctl-wrapper 196 B

12345678
  1. #!/bin/bash
  2. if [ "$1" = 'start' -o "$1" = 'stop' -o "$1" = 'restart' ] ; then
  3. service $2 $1
  4. elif [ "$1" = 'reload-or-restart' ] ; then
  5. service $2 restart
  6. else
  7. systemctl.original $*
  8. fi