From 4a7b82725b9e1198d6e054982535e108ed96c79b Mon Sep 17 00:00:00 2001 From: Christof Schulze Date: Sat, 11 Feb 2017 22:30:10 +0100 Subject: [PATCH] gluon-radvd: fix indentation in initscript --- package/gluon-radvd/files/etc/init.d/gluon-radvd | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/package/gluon-radvd/files/etc/init.d/gluon-radvd b/package/gluon-radvd/files/etc/init.d/gluon-radvd index 788d61b9..6ba8986e 100755 --- a/package/gluon-radvd/files/etc/init.d/gluon-radvd +++ b/package/gluon-radvd/files/etc/init.d/gluon-radvd @@ -4,11 +4,12 @@ USE_PROCD=1 START=50 start_service() { - [ -x /lib/gluon/radvd/arguments ] && { - procd_open_instance - procd_set_param command /usr/sbin/uradvd $(/lib/gluon/radvd/arguments) - procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} - procd_set_param stderr 1 - procd_close_instance - } + [ -x /lib/gluon/radvd/arguments ] && + { + procd_open_instance + procd_set_param command /usr/sbin/uradvd $(/lib/gluon/radvd/arguments) + procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} + procd_set_param stderr 1 + procd_close_instance + } }