Merge pull request #3625 from ldir-EDB0/master
luci-app-wol: use uci etherwake default interface
This commit is contained in:
commit
817736299e
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
'require uci';
|
||||||
'require fs';
|
'require fs';
|
||||||
'require ui';
|
'require ui';
|
||||||
'require rpc';
|
'require rpc';
|
||||||
|
@ -18,7 +19,8 @@ return L.view.extend({
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
L.resolveDefault(fs.stat('/usr/bin/etherwake')),
|
L.resolveDefault(fs.stat('/usr/bin/etherwake')),
|
||||||
L.resolveDefault(fs.stat('/usr/bin/wol')),
|
L.resolveDefault(fs.stat('/usr/bin/wol')),
|
||||||
this.callHostHints()
|
this.callHostHints(),
|
||||||
|
uci.load('etherwake')
|
||||||
]);
|
]);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -48,6 +50,7 @@ return L.view.extend({
|
||||||
o = s.option(widgets.DeviceSelect, 'iface', _('Network interface to use'),
|
o = s.option(widgets.DeviceSelect, 'iface', _('Network interface to use'),
|
||||||
_('Specifies the interface the WoL packet is sent on'));
|
_('Specifies the interface the WoL packet is sent on'));
|
||||||
|
|
||||||
|
o.default = uci.get('etherwake', 'setup', 'interface');
|
||||||
o.rmempty = false;
|
o.rmempty = false;
|
||||||
o.noaliases = true;
|
o.noaliases = true;
|
||||||
o.noinactive = true;
|
o.noinactive = true;
|
||||||
|
|
Loading…
Reference in a new issue