[source] dnsmasq: make tftp root if not existing

LEDE Commits lede-commits at lists.infradead.org
Thu Jun 1 15:30:53 PDT 2017


jow pushed a commit to source.git, branch lede-17.01:
https://git.lede-project.org/9e20cc56b9a7244b14a5aa8d807148a619339103

commit 9e20cc56b9a7244b14a5aa8d807148a619339103
Author: Alberto Bursi <alberto.bursi at outlook.it>
AuthorDate: Tue May 2 19:31:17 2017 +0200

    dnsmasq: make tftp root if not existing
    
    If there's a TFTP root directory configured, create it with mkdir -p
    (which does not throw an error if the folder exists already)
    before starting dnsmasq. This is useful for TFTP roots in /tmp, for example.
    
    Originally submitted by nfw user aka Nathaniel Wesley Filardo
    
    Signed-off-by: Alberto Bursi <alberto.bursi at outlook.it>
---
 package/network/services/dnsmasq/files/dnsmasq.init | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/network/services/dnsmasq/files/dnsmasq.init b/package/network/services/dnsmasq/files/dnsmasq.init
index cce7558..5b4de32 100644
--- a/package/network/services/dnsmasq/files/dnsmasq.init
+++ b/package/network/services/dnsmasq/files/dnsmasq.init
@@ -581,7 +581,7 @@ dnsmasq_start()
 	append_bool "$cfg" boguspriv "--bogus-priv"
 	append_bool "$cfg" expandhosts "--expand-hosts"
 	config_get tftp_root "$cfg" "tftp_root"
-	[ -d "$tftp_root" ] && append_bool "$cfg" enable_tftp "--enable-tftp"
+	[ -n "$tftp_root" ] && mkdir -p "$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"



More information about the lede-commits mailing list