[openwrt/openwrt] dnsmasq: add dhcphostsfile to ujail sandbox

LEDE Commits lede-commits at lists.infradead.org
Sat Apr 1 13:24:14 PDT 2023


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/936df715de3d33947ce38ca232b05c2bd3ef58f1

commit 936df715de3d33947ce38ca232b05c2bd3ef58f1
Author: Ruben Jenster <rjenster at gmail.com>
AuthorDate: Thu Mar 23 11:15:52 2023 +0100

    dnsmasq: add dhcphostsfile to ujail sandbox
    
    The dhcphostsfile must be mounted into the (ujail) sandbox.
    The file can not be accessed without this mount.
    
    Signed-off-by: Ruben Jenster <rjenster at gmail.com>
---
 package/network/services/dnsmasq/files/dnsmasq.init | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/network/services/dnsmasq/files/dnsmasq.init b/package/network/services/dnsmasq/files/dnsmasq.init
index 21e330ec28..608ef013f1 100755
--- a/package/network/services/dnsmasq/files/dnsmasq.init
+++ b/package/network/services/dnsmasq/files/dnsmasq.init
@@ -1212,6 +1212,7 @@ dnsmasq_start()
 		[ ! -e "$logfacility" ] && touch "$logfacility"
 		procd_add_jail_mount_rw "$logfacility"
 	esac
+	[ -e "$hostsfile" ] && procd_add_jail_mount $hostsfile
 
 	procd_close_instance
 }




More information about the lede-commits mailing list