From abde77f291c497a2d8cd93d737eee8722cdc94d8 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 11 Jun 2020 17:12:38 +0200 Subject: [PATCH] scripts/templates/rc.conf: append to logfile. --- scripts/templates/rc.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/templates/rc.conf b/scripts/templates/rc.conf index dc27711..4641300 100644 --- a/scripts/templates/rc.conf +++ b/scripts/templates/rc.conf @@ -26,7 +26,7 @@ stop_cmd="${name}_stop" eosio_api_healthcheck_start() { echo "Starting ${name}" - ${command} ${command_args} >${logfile} 2>&1 & + ${command} ${command_args} >>${logfile} 2>&1 & echo $! > ${pidfile} }