reorganized openrc files and added algorand node service

This commit is contained in:
celso 2025-02-18 05:05:22 -03:00
parent d0672ce9ae
commit 3df6429153
5 changed files with 48 additions and 0 deletions

4
openrc/conf.d/algorand Normal file
View File

@ -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

44
openrc/init.d/algorand Executable file
View File

@ -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
}