tools/rc.slackware

changeset 640
0f6daacdd597
parent 639
276ee5b61348
child 641
000d40511c92
--- a/tools/rc.slackware	Sat Mar 16 11:06:16 2024 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,44 +0,0 @@
-#!/bin/bash
-#
-# thermferm init script for Slackware.
-#
-# Copyright 2022-2024 Michiel Broek, the Netherlands.
-
-# Source default settings:
-if [ -r /etc/default/thermferm ]; then
-  . /etc/default/thermferm
-fi
-
-PIDFILE=/run/thermferm.pid
-
-case "$1" in
-  start)
-    echo -n "Starting Fermentation Controller: "
-    if [ -f ${PIDFILE} ]; then
-  	echo "already running."
-    else
-	${THERMFERM_BIN}
-        echo "done."
-    fi
-    ;;
-
-  stop)
-    echo -n "Stopping Fermentation Controller: "
-    if [ -f ${PIDFILE} ]; then
-      kill $(cat ${PIDFILE})
-      echo "done."
-    else
-      echo "wasn't running."
-    fi
-    ;;
-
-  restart)
-    $0 stop
-    sleep 2
-    $0 start
-    ;;
-
-  *)
-    echo "usage: $0 {start|stop|restart}"
-esac
-

mercurial