luci-app-attendedsysupgrade: reload rpcd fix #1668
when installing the luci app and opening it for the first time the webinterface shows an error as some freshly installed rpcd calls are not yet available. The reload fixes the problem. luci-app-attendedsysupgrade: downloadable image the creted sysupgrade image can now easily be downloaded via web interface. also fixed some </br> to <br /> Signed-off-by: Paul Spooren <spooren@informatik.uni-leipzig.de>
This commit is contained in:
parent
a6d55b19f3
commit
5949c2cea8
2 changed files with 6 additions and 5 deletions
|
@ -2,5 +2,6 @@
|
|||
|
||||
rm -rf /tmp/luci-indexcache /tmp/luci-modulecache/
|
||||
/etc/init.d/uhttpd restart
|
||||
/etc/init.d/rpcd reload
|
||||
|
||||
return 0
|
||||
|
|
|
@ -128,7 +128,7 @@ function ubus_call(command, argument, params, variable) {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
error_box("<b>Ubus call faild:</b></br>Request: " + request_json + "</br>Response: " + JSON.stringify(response))
|
||||
error_box("<b>Ubus call faild:</b><br />Request: " + request_json + "<br />Response: " + JSON.stringify(response))
|
||||
}
|
||||
ubus_closed++;
|
||||
}
|
||||
|
@ -180,7 +180,7 @@ function upgrade_check_callback(request_text) {
|
|||
if(request_json.upgrades != undefined) {
|
||||
info_output += "<h3>Package upgrades available</h3>"
|
||||
for (upgrade in request_json.upgrades) {
|
||||
info_output += "<b>" + upgrade + "</b>: " + request_json.upgrades[upgrade][1] + " to " + request_json.upgrades[upgrade][0] + "</br>"
|
||||
info_output += "<b>" + upgrade + "</b>: " + request_json.upgrades[upgrade][1] + " to " + request_json.upgrades[upgrade][0] + "<br />"
|
||||
}
|
||||
}
|
||||
data.packages = request_json.packages
|
||||
|
@ -231,9 +231,9 @@ function upgrade_request_callback(request) {
|
|||
var filename_split = data.sysupgrade_url.split("/")
|
||||
data.filename = filename_split[filename_split.length - 1]
|
||||
|
||||
info_output = "Firmware created</br><b>" + data.filename + "</b>"
|
||||
info_output = 'Firmware created: <a href="' + data.sysupgrade_url + '"><b>' + data.filename + '</b></a>'
|
||||
if(data.advanced_mode == 1) {
|
||||
info_output += '</br><a target="_blank" href="' + data.sysupgrade_url + '.log">Build log</a>'
|
||||
info_output += '<br /><a target="_blank" href="' + data.sysupgrade_url + '.log">Build log</a>'
|
||||
}
|
||||
info_box(info_output);
|
||||
|
||||
|
@ -378,7 +378,7 @@ function server_request(request_dict, path, callback) {
|
|||
} else if (request.status === 500) {
|
||||
request_json = JSON.parse(request_text)
|
||||
|
||||
error_box_content = "<b>Internal server error</b></br>"
|
||||
error_box_content = "<b>Internal server error</b><br />"
|
||||
error_box_content += request_json.error
|
||||
if(request_json.log != undefined) {
|
||||
data.log_url = request_json.log
|
||||
|
|
Loading…
Reference in a new issue