From c3d7706bc98270789fd90507d2ccd02797eb58cd Mon Sep 17 00:00:00 2001 From: qo-op Date: Thu, 8 Jul 2021 07:22:56 +0200 Subject: [PATCH] verify ipfs is running & responding --- cron_MINUTE.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron_MINUTE.sh b/cron_MINUTE.sh index bcbb978..fcdff26 100755 --- a/cron_MINUTE.sh +++ b/cron_MINUTE.sh @@ -19,7 +19,7 @@ source $HOME/.profile [[ ! $(echo $PATH | grep "/usr/games") ]] && export PATH="$PATH:/usr/games" #### INIT STATION PARAMETERS -[[ $IPFSNODEID ]] && export IPFSNODEID=$IPFSNODEID || export IPFSNODEID=$(ipfs id -f='\n') +IPFSNODEID=$(ipfs --timeout=10s id -f='\n') && [[ -f /etc/sudoers.d/systemctl ]] && sudo systemctl restart ipfs && exit 1 ## CONTROL IPFS IS RUNNING OR RESTART isIPFSRunning=$(ps auxf --sort=+utime | grep -w ipfs | grep -v -E 'color=auto|grep' | tail -n 1 | cut -d ' ' -f 1) if [[ ! $isIPFSRunning ]]; then