summaryrefslogtreecommitdiffstats
path: root/syssrv
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-04-30 07:47:04 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2014-04-30 07:47:04 +0200
commit7fe0375a2a8f700cc3349ab5fd18a32e2f74bdc3 (patch)
tree574d97bb3542a8c47363147caf2ab91496358703 /syssrv
parent42a401a312d9093a6ff21d2c00fc178d624e78b6 (diff)
downloadbin-7fe0375a2a8f700cc3349ab5fd18a32e2f74bdc3.zip
bin-7fe0375a2a8f700cc3349ab5fd18a32e2f74bdc3.tar.gz
remove syssrv, now I'm used to systemctl ;)
Diffstat (limited to 'syssrv')
-rwxr-xr-xsyssrv12
1 files changed, 0 insertions, 12 deletions
diff --git a/syssrv b/syssrv
deleted file mode 100755
index c995153..0000000
--- a/syssrv
+++ /dev/null
@@ -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