From 06bf9345d0cbe8942f540126ce56081909cf64f2 Mon Sep 17 00:00:00 2001 From: Antonio Paunovic Date: Tue, 6 Jun 2017 14:47:46 +0000 Subject: [PATCH] netopeer2-server: init recovery Signed-off-by: Antonio Paunovic --- net/netopeer2/files/netopeer2-server.init | 31 +++++++++++++++++++---- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/net/netopeer2/files/netopeer2-server.init b/net/netopeer2/files/netopeer2-server.init index cdc255003..59f769967 100644 --- a/net/netopeer2/files/netopeer2-server.init +++ b/net/netopeer2/files/netopeer2-server.init @@ -1,17 +1,38 @@ #!/bin/sh /etc/rc.common -START=90 -STOP=10 +START=99 +STOP=11 USE_PROCD=1 PROG=/bin/netopeer2-server start_service() { - # netopeer2-server requires sysrepo daemon - /etc/init.d/sysrepo start + PERSIST_FILE=/etc/sysrepo/data/ietf-keystore.persist - sleep 1 + while [ ! -f $PERSIST_FILE ] + do + echo "no persist file yet" + sleep 3 + done + + RETRY_CNT=5 + LAST_LINE=$(tail -n1 $PERSIST_FILE) + + while [[ -f $PERSIST_FILE && $LAST_LINE != "" ]] + do + sleep 1 + + echo "$RETRY_CNT: $LAST_LINE" + LAST_LINE=$(tail -n1 $PERSIST_FILE) + RETRY_CNT=$(($RETRY_CNT-1)) + + if [ $RETRY_CNT -le 0 ]; + then + rm $PERSIST_FILE + RETRY_CNT=5 + fi + done procd_open_instance procd_set_param command $PROG