Skip to content
Snippets Groups Projects
Commit cf1cf9a8 authored by Travis Kemen's avatar Travis Kemen
Browse files

create the dhcp leasefile if it doesn't exist

SVN-Revision: 10460
parent 44f1ad22
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment