From a4e05483b1c4cb9973d78e3a8312023ee0be5262 Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Wed, 3 Jan 2018 09:19:46 +0100 Subject: luci-app-travelmate: sync with 1.0.1 * LuCI: BSSID will be ignored by default in 'wireless add' dialog * LuCI: Textarea 'autoscroll down' in logfile view * LuCI: refine logfile search term Signed-off-by: Dirk Brenken --- applications/luci-app-travelmate/luasrc/controller/travelmate.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'applications/luci-app-travelmate/luasrc/controller/travelmate.lua') diff --git a/applications/luci-app-travelmate/luasrc/controller/travelmate.lua b/applications/luci-app-travelmate/luasrc/controller/travelmate.lua index efbe619a43..ef79c7406b 100644 --- a/applications/luci-app-travelmate/luasrc/controller/travelmate.lua +++ b/applications/luci-app-travelmate/luasrc/controller/travelmate.lua @@ -1,4 +1,4 @@ --- Copyright 2017 Dirk Brenken (dev@brenken.org) +-- Copyright 2017-2018 Dirk Brenken (dev@brenken.org) -- This is free software, licensed under the Apache License, Version 2.0 module("luci.controller.travelmate", package.seeall) @@ -33,9 +33,9 @@ function logread() local logfile if nixio.fs.access("/var/log/messages") then - logfile = util.trim(util.exec("cat /var/log/messages | grep 'travelmate'")) + logfile = util.trim(util.exec("cat /var/log/messages | grep 'travelmate-'")) else - logfile = util.trim(util.exec("logread -e 'travelmate'")) + logfile = util.trim(util.exec("logread -e 'travelmate-'")) end templ.render("travelmate/logread", {title = i18n.translate("Travelmate Logfile"), content = logfile}) end -- cgit v1.2.3