From c398f07a7bda69066d688860ba824629c82d32b3 Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 25 Feb 2016 09:24:24 +0000 Subject: [PATCH] dnsmasq: only enable tftp if the tftp root exists Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48760 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/services/dnsmasq/files/dnsmasq.init | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/network/services/dnsmasq/files/dnsmasq.init b/package/network/services/dnsmasq/files/dnsmasq.init index db342e7c8e..504c4acf4c 100644 --- a/package/network/services/dnsmasq/files/dnsmasq.init +++ b/package/network/services/dnsmasq/files/dnsmasq.init @@ -128,7 +128,8 @@ dnsmasq() { append_bool "$cfg" dbus "--enable-dbus" append_bool "$cfg" boguspriv "--bogus-priv" append_bool "$cfg" expandhosts "--expand-hosts" - append_bool "$cfg" enable_tftp "--enable-tftp" + config_get tftp_root "$cfg" "tftp_root" + [ -d "$tftp_root" ] && append_bool "$cfg" enable_tftp "--enable-tftp" append_bool "$cfg" tftp_no_fail "--tftp-no-fail" append_bool "$cfg" nonwildcard "--bind-dynamic" append_bool "$cfg" fqdn "--dhcp-fqdn" -- 2.11.0