From a720c29255cf68f920039108fe6e2668a5ecc7b7 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 23 Jul 2011 18:36:18 +0200 Subject: [PATCH] connman: restart on crash Signed-off-by: Stephan Raue --- packages/network/connman/init.d/21_network | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/network/connman/init.d/21_network b/packages/network/connman/init.d/21_network index c82b6472c6..87d57c9765 100644 --- a/packages/network/connman/init.d/21_network +++ b/packages/network/connman/init.d/21_network @@ -108,5 +108,8 @@ fi # starting Connection manager progress "starting Connection manager" - /usr/sbin/connmand + while true; do + /usr/sbin/connmand -n + usleep 250000 + done )&