From 23a44aab2aba6a7fb93dc10941d8bc311bec5559 Mon Sep 17 00:00:00 2001 From: Sungbo Eo Date: Thu, 2 Jan 2020 22:21:28 +0900 Subject: [PATCH] coova-chilli: enable service by default If "disabled" option does not exist, service should be enabled. Fixes: #10392 Signed-off-by: Sungbo Eo --- net/coova-chilli/files/chilli.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/coova-chilli/files/chilli.init b/net/coova-chilli/files/chilli.init index b1015f3885..ab6ce7130c 100644 --- a/net/coova-chilli/files/chilli.init +++ b/net/coova-chilli/files/chilli.init @@ -49,7 +49,7 @@ start_chilli() { local cfg="$1" local base="/var/run/chilli_${cfg}" - config_get_bool disabled "$1" 'disabled' 1 + config_get_bool disabled "$1" 'disabled' 0 [ $disabled = 1 ] && return procd_open_instance "$cfg"