gluon-luci-admin: ensure that the authorized_keys file always ends with a newline

Fixes #558
This commit is contained in:
Matthias Schiffer 2016-02-05 18:31:25 +01:00
parent 4d6956fa25
commit 145cb4ded2
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ if fs.access("/etc/config/dropbear") then
function keys.write(self, section, value)
if value then
fs.writefile("/etc/dropbear/authorized_keys", value:gsub("\r\n", "\n"))
fs.writefile("/etc/dropbear/authorized_keys", value:gsub("\r\n", "\n"):trim() .. "\n")
end
end