From 3df64291534f04abd31024f987c2e46ed98c676a Mon Sep 17 00:00:00 2001 From: celso Date: Tue, 18 Feb 2025 05:05:22 -0300 Subject: [PATCH] reorganized openrc files and added algorand node service --- openrc/conf.d/algorand | 4 +++ openrc/{ => conf.d}/net.bridge | 0 openrc/{ => conf.d}/net.nobridge | 0 openrc/init.d/algorand | 44 ++++++++++++++++++++++++++++++++ openrc/{ => init.d}/fix-suspend | 0 5 files changed, 48 insertions(+) create mode 100644 openrc/conf.d/algorand rename openrc/{ => conf.d}/net.bridge (100%) rename openrc/{ => conf.d}/net.nobridge (100%) create mode 100755 openrc/init.d/algorand rename openrc/{ => init.d}/fix-suspend (100%) diff --git a/openrc/conf.d/algorand b/openrc/conf.d/algorand new file mode 100644 index 0000000..6ca2ef3 --- /dev/null +++ b/openrc/conf.d/algorand @@ -0,0 +1,4 @@ +# Change this to the user you want to run the node as +RUN_AS=kurk:kurk +# Change this to the directory you want to run the node from (no trailing /) +ALGODIR=/home/kurk/node diff --git a/openrc/net.bridge b/openrc/conf.d/net.bridge similarity index 100% rename from openrc/net.bridge rename to openrc/conf.d/net.bridge diff --git a/openrc/net.nobridge b/openrc/conf.d/net.nobridge similarity index 100% rename from openrc/net.nobridge rename to openrc/conf.d/net.nobridge diff --git a/openrc/init.d/algorand b/openrc/init.d/algorand new file mode 100755 index 0000000..e090bb5 --- /dev/null +++ b/openrc/init.d/algorand @@ -0,0 +1,44 @@ +name="algorand" +description="runs an algorand node on the given directory" +command="${ALGODIR}/goal" +command_args="-d ${ALGODIR}/data" +command_user="${RUN_AS}" +pidfile="/var/run/${RC_SVCNAME}.pid" +procname="algod" + +start(){ + ebegin "Starting algorand node" + /bin/bash -c "${command} node start ${command_args}" + eend "${?}" +} + +stop(){ + ebegin "Stopping algorand node" + /bin/bash -c "${command} node stop ${command_args}" + eend "${?}" +} + +status(){ + einfo "algorand node status" + /bin/bash -c "${command} node status ${command_args}" || ewarn "node is stopped" + eend "${?}" +} + +checkconfig() { + if [ -d "${ALGODIR}" ]; then + return 0 + fi +} + +start_pre() { + # Prevent of double check + if [ "${RC_CMD}" != "restart" ] ; then + checkconfig || return $? + fi +} + +stop_pre() { + if [ "${RC_CMD}" = "restart" ] ; then + checkconfig || return $? + fi +} diff --git a/openrc/fix-suspend b/openrc/init.d/fix-suspend similarity index 100% rename from openrc/fix-suspend rename to openrc/init.d/fix-suspend