From 822d7cd8a85b762acc89a6be55c5ccde910ddfa2 Mon Sep 17 00:00:00 2001 From: Moritz Warning Date: Mon, 9 May 2016 20:29:52 +0200 Subject: [PATCH] fix check for config existence --- nodogsplash/files/nodogsplash.init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodogsplash/files/nodogsplash.init b/nodogsplash/files/nodogsplash.init index 1fa0c79..79e7456 100755 --- a/nodogsplash/files/nodogsplash.init +++ b/nodogsplash/files/nodogsplash.init @@ -152,11 +152,11 @@ generate_uci_config() { config_get val "$cfg" config if [ -n "$val" ] ; then - if [ -f "$val" ] ; then + if [ ! -f "$val" ] ; then nolog error "Configuration file '$file' doesn't exist" return 0 fi - cat $val > CONFIGFILE + cat "$val" >> CONFIGFILE fi config_get val "$cfg" network