diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-04-30 07:47:04 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-04-30 07:47:04 +0200 |
commit | 7fe0375a2a8f700cc3349ab5fd18a32e2f74bdc3 (patch) | |
tree | 574d97bb3542a8c47363147caf2ab91496358703 /syssrv | |
parent | 42a401a312d9093a6ff21d2c00fc178d624e78b6 (diff) | |
download | bin-7fe0375a2a8f700cc3349ab5fd18a32e2f74bdc3.zip bin-7fe0375a2a8f700cc3349ab5fd18a32e2f74bdc3.tar.gz |
remove syssrv, now I'm used to systemctl ;)
Diffstat (limited to 'syssrv')
-rwxr-xr-x | syssrv | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -1,12 +0,0 @@ -#! /bin/sh - -if [ $# -lt 2 ]; then - echo "usage: $0 on|off service" && exit 1 -fi -if [ "$1" = "on" ]; then - systemctl start $2.service -elif [ "$1" = "off" ]; then - systemctl stop $2.service -else - echo "usage: $0 on|off service" && exit 1 -fi |