1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Fix: update tmp/dnsmasqdata to match sudoers. Resolves #407

This commit is contained in:
billz 2019-10-04 18:57:58 +01:00
parent 83e6f60cb7
commit f9afd96280

View File

@ -55,9 +55,8 @@ function DisplayDHCPConfig()
$config .= "dhcp-host=$mac,$ip".PHP_EOL;
}
}
file_put_contents("/tmp/dhcpddata", $config);
system('sudo cp /tmp/dhcpddata '.RASPI_DNSMASQ_CONFIG, $return);
file_put_contents("/tmp/dnsmasqdata", $config);
system('sudo cp /tmp/dnsmasqdata '.RASPI_DNSMASQ_CONFIG, $return);
} else {
$status->addMessage($errors, 'danger');
}