luci-mod-network: interfaces.js: issue iface restart via file/exec rpc call

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2019-10-31 17:37:55 +01:00
parent 6aa4b83f24
commit c72c78bed9
3 changed files with 5 additions and 21 deletions

View file

@ -62,6 +62,7 @@
"/etc/sysupgrade.conf": [ "write" ],
"/sbin/block": [ "exec" ],
"/sbin/firstboot": [ "exec" ],
"/sbin/ifup": [ "exec" ],
"/sbin/reboot": [ "exec" ],
"/sbin/sysupgrade": [ "exec" ],
"/sbin/wifi": [ "exec" ],

View file

@ -1,4 +1,5 @@
'use strict';
'require fs';
'require uci';
'require form';
'require network';
@ -934,11 +935,9 @@ return L.view.extend({
if (dsc.getAttribute('reconnect') == '') {
dsc.setAttribute('reconnect', '1');
tasks.push(L.Request.post(
L.url('admin/network/iface_reconnect', section_ids[i]),
'token=' + L.env.token,
{ headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }
).catch(function() {}));
tasks.push(fs.exec('/sbin/ifup', [section_ids[i]]).catch(function(e) {
L.ui.addNotification(null, E('p', e.message));
}));
}
else if (dsc.getAttribute('disconnect') == '' || dsc.getAttribute('disconnect') == 'force') {
var force = dsc.getAttribute('disconnect');

View file

@ -36,9 +36,6 @@ function index()
end
page = entry({"admin", "network", "iface_reconnect"}, post("iface_reconnect"), nil)
page.leaf = true
page = entry({"admin", "network", "iface_down"}, post("iface_down"), nil)
page.leaf = true
@ -86,19 +83,6 @@ function index()
-- end
end
function iface_reconnect(iface)
local netmd = require "luci.model.network".init()
local net = netmd:get_network(iface)
if net then
luci.sys.call("env -i /sbin/ifup %s >/dev/null 2>/dev/null"
% luci.util.shellquote(iface))
luci.http.status(200, "Reconnected")
return
end
luci.http.status(404, "No such interface")
end
local function addr2dev(addr, src)
local ip = require "luci.ip"
local route = ip.route(addr, src)