From 811012cab56099cafb68ac98a08c01e28d3e42ad Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 2 Oct 2019 19:58:09 +0200 Subject: [PATCH] luci-mod-system: startup.js: use common fs.js class Signed-off-by: Jo-Philipp Wich --- .../resources/view/system/startup.js | 23 ++++--------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js index 77f61d607a..07eede2f07 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js @@ -1,5 +1,6 @@ 'use strict'; 'require rpc'; +'require fs'; return L.view.extend({ callInitList: rpc.declare({ @@ -15,22 +16,9 @@ return L.view.extend({ expect: { result: false } }), - callFileRead: rpc.declare({ - object: 'file', - method: 'read', - params: [ 'path' ], - expect: { data: '' } - }), - - callFileWrite: rpc.declare({ - object: 'file', - method: 'write', - params: [ 'path', 'data' ] - }), - load: function() { return Promise.all([ - this.callFileRead('/etc/rc.local'), + L.resolveDefault(fs.read('/etc/rc.local'), ''), this.callInitList() ]); }, @@ -58,14 +46,11 @@ return L.view.extend({ handleRcLocalSave: function(ev) { var value = (document.querySelector('textarea').value || '').trim().replace(/\r\n/g, '\n') + '\n'; - return this.callFileWrite('/etc/rc.local', value).then(function(rc) { - if (rc != 0) - throw rpc.getStatusText(rc); - + return fs.write('/etc/rc.local', value).then(function() { document.querySelector('textarea').value = value; L.ui.addNotification(null, E('p', _('Contents have been saved.')), 'info'); }).catch(function(e) { - L.ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e))); + L.ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e.message))); }); }, -- 2.30.2