dnsmasq: remove a useless subshell invocation from the init script
SVN-Revision: 23272
This commit is contained in:
parent
91cb4aac9e
commit
8c33c86021
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue