summaryrefslogtreecommitdiffstats
path: root/syssrv
diff options
context:
space:
mode:
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