gluon-radvd: fix indentation in initscript

This commit is contained in:
Christof Schulze 2017-02-11 22:30:10 +01:00
parent ab9981d48f
commit 4a7b82725b

View File

@ -4,11 +4,12 @@ USE_PROCD=1
START=50 START=50
start_service() { start_service() {
[ -x /lib/gluon/radvd/arguments ] && { [ -x /lib/gluon/radvd/arguments ] &&
procd_open_instance {
procd_set_param command /usr/sbin/uradvd $(/lib/gluon/radvd/arguments) procd_open_instance
procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} procd_set_param command /usr/sbin/uradvd $(/lib/gluon/radvd/arguments)
procd_set_param stderr 1 procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
procd_close_instance procd_set_param stderr 1
} procd_close_instance
}
} }