mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-20 09:26:28 +00:00
dnsmasq: remove a useless subshell invocation from the init script
SVN-Revision: 23272
This commit is contained in:
parent
91cb4aac9e
commit
8c33c86021
@ -102,7 +102,7 @@ dnsmasq() {
|
||||
[ "$readethers" = "1" ] && [ -e "/etc/ethers" ] || touch /etc/ethers
|
||||
|
||||
config_get leasefile $cfg leasefile
|
||||
[ -n "$leasefile" ] && ([ -e "$leasefile" ] || touch "$leasefile")
|
||||
[ -n "$leasefile" ] && [ -e "$leasefile" ] || touch "$leasefile"
|
||||
config_get_bool cachelocal "$cfg" cachelocal 1
|
||||
|
||||
config_get hostsfile "$cfg" dhcphostsfile
|
||||
|
Loading…
x
Reference in New Issue
Block a user