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