aboutsummaryrefslogtreecommitdiff
path: root/shroom_daemon.sh
diff options
context:
space:
mode:
authorerg <uinarf@autistici.org>2023-02-28 20:09:47 +0100
committererg <uinarf@autistici.org>2023-02-28 20:09:47 +0100
commit7e51b88785ecde452ffc29445a78492e5a11710e (patch)
tree0f7bc5ee77c428dafef44c05df6f93f37802e47f /shroom_daemon.sh
parentd6970e81e607f27bee9323d10d1476621de3416c (diff)
downloadPi_Temp_PID_Control-7e51b88785ecde452ffc29445a78492e5a11710e.tar.gz
Pi_Temp_PID_Control-7e51b88785ecde452ffc29445a78492e5a11710e.tar.bz2
Pi_Temp_PID_Control-7e51b88785ecde452ffc29445a78492e5a11710e.zip
Completely revorked
Diffstat (limited to 'shroom_daemon.sh')
-rw-r--r--shroom_daemon.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/shroom_daemon.sh b/shroom_daemon.sh
deleted file mode 100644
index adf6712..0000000
--- a/shroom_daemon.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 2023 erg_samowzbudnik
-# Distributed under the terms of the GNU General Public Licence v2
-
-GROUP=$(id -g)
-supervisor="supervise-daemon"
-command_args_foreground="--foreground"
-# Could also get dir to store pid file from XDG_RUNTIME_DIR
-pidfile="/run/user/${UID}/${RC_SVCNAME}.pid"
-extra_started_commands="reload"
-command_user="${USER}:${GROUP}"
-command="python main.py"
-description="Daemon for shroombox"
-
-depend() {
- need localmount
- use logger
-}
-
-reload() {
- ebegin "Reloading ${RC_SVCNAME}configuration"
- start-stop-daemon --exec $command --signal HUP
- ${supervisor} ${RC_SVCNAME} --signal HUP --pidfile "${pidfile}"
- eend $?
-}