From: thepeople Date: Thu, 14 Feb 2008 21:17:14 +0000 (+0000) Subject: create the dhcp leasefile if it doesn't exist X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=6df5e6f2088d39e117540ab60345b65f32cfeadb;p=openwrt.git create the dhcp leasefile if it doesn't exist git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10460 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init index 62e2f51fed..1a24612633 100644 --- a/package/dnsmasq/files/dnsmasq.init +++ b/package/dnsmasq/files/dnsmasq.init @@ -63,6 +63,9 @@ dnsmasq() { append_parm "$cfg" "local" "-S" append_parm "$cfg" "leasefile" "-l" append_parm "$cfg" "resolvfile" "-r" + + config_get leasefile $cfg leasefile + [ -e "$leasefile" ] || touch "$leasefile" } dhcp_subscrid_add() {